{"id":18624553,"url":"https://github.com/zvps/ebay-sell-finances-php-client","last_synced_at":"2025-11-03T19:30:25.196Z","repository":{"id":57092352,"uuid":"383441098","full_name":"zVPS/ebay-sell-finances-php-client","owner":"zVPS","description":null,"archived":false,"fork":false,"pushed_at":"2021-07-30T16:32:41.000Z","size":149,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-27T05:41:43.557Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zVPS.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-07-06T11:15:02.000Z","updated_at":"2021-07-30T16:32:44.000Z","dependencies_parsed_at":"2022-08-22T21:40:19.832Z","dependency_job_id":null,"html_url":"https://github.com/zVPS/ebay-sell-finances-php-client","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zVPS%2Febay-sell-finances-php-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zVPS%2Febay-sell-finances-php-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zVPS%2Febay-sell-finances-php-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zVPS%2Febay-sell-finances-php-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zVPS","download_url":"https://codeload.github.com/zVPS/ebay-sell-finances-php-client/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239418578,"owners_count":19635208,"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","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-07T04:29:29.001Z","updated_at":"2025-11-03T19:30:25.162Z","avatar_url":"https://github.com/zVPS.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OpenAPIClient-php\n\nThis API is used to retrieve seller payouts and monetary transaction details related to those payouts.\n\n\n## Installation \u0026 Usage\n\n### Requirements\n\nPHP 7.2 and later.\n\n### Composer\n\nTo install the bindings via [Composer](https://getcomposer.org/), add the following to `composer.json`:\n\n```json\n{\n  \"repositories\": [\n    {\n      \"type\": \"vcs\",\n      \"url\": \"https://github/zvps/ebay-sell-finances-php-client.git\"\n    }\n  ],\n  \"require\": {\n    \"zvps/ebay-sell-finances-php-client\": \"*@dev\"\n  }\n}\n```\n\nThen run `composer install`\n\n### Manual Installation\n\nDownload the files and include `autoload.php`:\n\n```php\n\u003c?php\nrequire_once('/path/to/OpenAPIClient-php/vendor/autoload.php');\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```php\n\u003c?php\nrequire_once(__DIR__ . '/vendor/autoload.php');\n\n\n\n// Configure OAuth2 access token for authorization: Authorization Code\n$config = Ebay\\Sell\\Finances\\Configuration::getDefaultConfiguration()-\u003esetAccessToken('YOUR_ACCESS_TOKEN');\n\n\n$apiInstance = new Ebay\\Sell\\Finances\\Api\\PayoutApi(\n    // If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    // This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$payout_id = 'payout_id_example'; // string | The unique identfier of the payout is passed in as a path parameter at the end of the call URI. The getPayouts method can be used to retrieve the unique identifier of a payout, or the user can check Seller Hub to get the payout ID.\n\ntry {\n    $result = $apiInstance-\u003egetPayout($payout_id);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling PayoutApi-\u003egetPayout: ', $e-\u003egetMessage(), PHP_EOL;\n}\n\n```\n\n## API Endpoints\n\nAll URIs are relative to *https://apiz.ebay.com/sell/finances/v1*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*PayoutApi* | [**getPayout**](docs/Api/PayoutApi.md#getpayout) | **GET** /payout/{payout_Id} | \n*PayoutApi* | [**getPayoutSummary**](docs/Api/PayoutApi.md#getpayoutsummary) | **GET** /payout_summary | \n*PayoutApi* | [**getPayouts**](docs/Api/PayoutApi.md#getpayouts) | **GET** /payout | \n*SellerFundsSummaryApi* | [**getSellerFundsSummary**](docs/Api/SellerFundsSummaryApi.md#getsellerfundssummary) | **GET** /seller_funds_summary | \n*TransactionApi* | [**getTransactionSummary**](docs/Api/TransactionApi.md#gettransactionsummary) | **GET** /transaction_summary | \n*TransactionApi* | [**getTransactions**](docs/Api/TransactionApi.md#gettransactions) | **GET** /transaction | \n*TransferApi* | [**getTransfer**](docs/Api/TransferApi.md#gettransfer) | **GET** /transfer/{transfer_Id} | \n\n## Models\n\n- [Amount](docs/Model/Amount.md)\n- [BalanceAdjustment](docs/Model/BalanceAdjustment.md)\n- [Buyer](docs/Model/Buyer.md)\n- [Charge](docs/Model/Charge.md)\n- [Fee](docs/Model/Fee.md)\n- [FundingSource](docs/Model/FundingSource.md)\n- [OrderLineItem](docs/Model/OrderLineItem.md)\n- [Payout](docs/Model/Payout.md)\n- [PayoutInstrument](docs/Model/PayoutInstrument.md)\n- [PayoutSummaryResponse](docs/Model/PayoutSummaryResponse.md)\n- [Payouts](docs/Model/Payouts.md)\n- [Reference](docs/Model/Reference.md)\n- [SellerFundsSummaryResponse](docs/Model/SellerFundsSummaryResponse.md)\n- [Transaction](docs/Model/Transaction.md)\n- [TransactionSummaryResponse](docs/Model/TransactionSummaryResponse.md)\n- [Transactions](docs/Model/Transactions.md)\n- [Transfer](docs/Model/Transfer.md)\n- [TransferDetail](docs/Model/TransferDetail.md)\n\n## Authorization\n\n### Authorization Code\n\n- **Type**: `OAuth`\n- **Flow**: `accessCode`\n- **Authorization URL**: `https://auth.ebay.com/oauth2/authorize`\n- **Scopes**: \n    - **https://api.ebay.com/oauth/api_scope/sell.finances**: View and manage your payment and order information to display this information to you and allow you to initiate refunds using the third party application\n\n## Tests\n\nTo run the tests, use:\n\n```bash\ncomposer install\nvendor/bin/phpunit\n```\n\n## Author\n\n\n\n## About this package\n\nThis PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: `1.9.0`\n    - Package version: `5.0.0`\n- Build package: `org.openapitools.codegen.languages.PhpClientCodegen`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzvps%2Febay-sell-finances-php-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzvps%2Febay-sell-finances-php-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzvps%2Febay-sell-finances-php-client/lists"}