{"id":19888843,"url":"https://github.com/paypal/paypal-dotnet-server-sdk","last_synced_at":"2025-07-22T09:32:46.465Z","repository":{"id":256372268,"uuid":"847885872","full_name":"paypal/PayPal-Dotnet-Server-SDK","owner":"paypal","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-22T18:41:37.000Z","size":1319,"stargazers_count":21,"open_issues_count":5,"forks_count":5,"subscribers_count":11,"default_branch":"main","last_synced_at":"2025-05-22T19:46:24.560Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/paypal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-08-26T18:24:32.000Z","updated_at":"2025-05-01T17:38:02.000Z","dependencies_parsed_at":"2024-09-10T11:27:26.674Z","dependency_job_id":"c5a1aaa7-aeaa-4e78-83cf-d0ef45991b14","html_url":"https://github.com/paypal/PayPal-Dotnet-Server-SDK","commit_stats":null,"previous_names":["paypal/paypal-dotnet-server-sdk"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/paypal/PayPal-Dotnet-Server-SDK","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paypal%2FPayPal-Dotnet-Server-SDK","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paypal%2FPayPal-Dotnet-Server-SDK/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paypal%2FPayPal-Dotnet-Server-SDK/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paypal%2FPayPal-Dotnet-Server-SDK/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/paypal","download_url":"https://codeload.github.com/paypal/PayPal-Dotnet-Server-SDK/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paypal%2FPayPal-Dotnet-Server-SDK/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266455972,"owners_count":23931366,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-12T18:08:26.356Z","updated_at":"2025-07-22T09:32:46.452Z","avatar_url":"https://github.com/paypal.png","language":"C#","funding_links":["https://developer.paypal.com/docs/api/orders/v2/","https://developer.paypal.com/docs/api/payments/v2","https://developer.paypal.com/docs/api/payment-tokens/v3/"],"categories":[],"sub_categories":[],"readme":"\n# Getting Started with PayPal Server SDK\n\n## Introduction\n\n### Important Notes\n\n- **Available Features:** This SDK currently contains only 3 of PayPal's API endpoints. Additional endpoints and functionality will be added in the future.\n\n### Information\n\nThe PayPal Server SDK provides integration access to the PayPal REST APIs. The API endpoints are divided into distinct controllers:\n\n- Orders Controller: [Orders API v2](https://developer.paypal.com/docs/api/orders/v2/)\n- Payments Controller: [Payments API v2](https://developer.paypal.com/docs/api/payments/v2\n- Vault Controller: [Payment Method Tokens API v3](https://developer.paypal.com/docs/api/payment-tokens/v3/) *Available in the US only.*\n\n## Install the Package\n\nIf you are building with .NET CLI tools then you can also use the following command:\n\n```bash\ndotnet add package PayPalServerSDK --version 1.1.0\n```\n\nYou can also view the package at:\nhttps://www.nuget.org/packages/PayPalServerSDK/1.1.0\n\n## Initialize the API Client\n\n**_Note:_** Documentation for the client can be found [here.](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/client.md)\n\nThe following parameters are configurable for the API Client:\n\n| Parameter | Type | Description |\n|  --- | --- | --- |\n| Environment | `Environment` | The API environment. \u003cbr\u003e **Default: `Environment.Sandbox`** |\n| Timeout | `TimeSpan` | Http client timeout.\u003cbr\u003e*Default*: `TimeSpan.FromSeconds(100)` |\n| HttpClientConfiguration | [`Action\u003cHttpClientConfiguration.Builder\u003e`](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/http-client-configuration-builder.md) | Action delegate that configures the HTTP client by using the HttpClientConfiguration.Builder for customizing API call settings.\u003cbr\u003e*Default*: `new HttpClient()` |\n| LogBuilder | [`LogBuilder`](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/log-builder.md) | Represents the logging configuration builder for API calls |\n| ClientCredentialsAuth | [`ClientCredentialsAuth`](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/auth/oauth-2-client-credentials-grant.md) | The Credentials Setter for OAuth 2 Client Credentials Grant |\n\nThe API client can be initialized as follows:\n\n```csharp\nPaypalServerSdkClient client = new PaypalServerSdkClient.Builder()\n    .ClientCredentialsAuth(\n        new ClientCredentialsAuthModel.Builder(\n            \"OAuthClientId\",\n            \"OAuthClientSecret\"\n        )\n        .Build())\n    .Environment(PaypalServerSdk.Standard.Environment.Sandbox)\n    .LoggingConfig(config =\u003e config\n        .LogLevel(LogLevel.Information)\n        .RequestConfig(reqConfig =\u003e reqConfig.Body(true))\n        .ResponseConfig(respConfig =\u003e respConfig.Headers(true))\n    )\n    .Build();\n```\n\n## Environments\n\nThe SDK can be configured to use a different environment for making API calls. Available environments are:\n\n### Fields\n\n| Name | Description |\n|  --- | --- |\n| Production | PayPal Live Environment |\n| Sandbox | **Default** PayPal Sandbox Environment |\n\n## Authorization\n\nThis API uses the following authentication schemes.\n\n* [`Oauth2 (OAuth 2 Client Credentials Grant)`](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/auth/oauth-2-client-credentials-grant.md)\n\n## List of APIs\n\n* [Orders](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/controllers/orders.md)\n* [Payments](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/controllers/payments.md)\n* [Vault](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/controllers/vault.md)\n\n## SDK Infrastructure\n\n### Configuration\n\n* [HttpClientConfiguration](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/http-client-configuration.md)\n* [HttpClientConfigurationBuilder](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/http-client-configuration-builder.md)\n* [LogBuilder](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/log-builder.md)\n* [LogRequestBuilder](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/log-request-builder.md)\n* [LogResponseBuilder](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/log-response-builder.md)\n* [ProxyConfigurationBuilder](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/proxy-configuration-builder.md)\n\n### HTTP\n\n* [HttpCallback](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/http-callback.md)\n* [HttpContext](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/http-context.md)\n* [HttpRequest](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/http-request.md)\n* [HttpResponse](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/http-response.md)\n* [HttpStringResponse](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/http-string-response.md)\n\n### Utilities\n\n* [ApiException](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/api-exception.md)\n* [ApiResponse](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/api-response.md)\n* [ApiHelper](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/api-helper.md)\n* [JsonObject](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/json-object.md)\n* [JsonValue](https://www.github.com/paypal/PayPal-Dotnet-Server-SDK/tree/1.1.0/doc/json-value.md)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaypal%2Fpaypal-dotnet-server-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpaypal%2Fpaypal-dotnet-server-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaypal%2Fpaypal-dotnet-server-sdk/lists"}