{"id":22519450,"url":"https://github.com/hydrogen-dev/integration-sdk-php","last_synced_at":"2025-08-26T16:21:47.368Z","repository":{"id":47723674,"uuid":"339615317","full_name":"hydrogen-dev/integration-sdk-php","owner":"hydrogen-dev","description":null,"archived":false,"fork":false,"pushed_at":"2021-08-16T12:42:59.000Z","size":423,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-28T02:49:36.958Z","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/hydrogen-dev.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-02-17T04:55:38.000Z","updated_at":"2021-08-16T12:42:57.000Z","dependencies_parsed_at":"2022-09-23T17:40:45.691Z","dependency_job_id":null,"html_url":"https://github.com/hydrogen-dev/integration-sdk-php","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hydrogen-dev/integration-sdk-php","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hydrogen-dev%2Fintegration-sdk-php","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hydrogen-dev%2Fintegration-sdk-php/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hydrogen-dev%2Fintegration-sdk-php/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hydrogen-dev%2Fintegration-sdk-php/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hydrogen-dev","download_url":"https://codeload.github.com/hydrogen-dev/integration-sdk-php/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hydrogen-dev%2Fintegration-sdk-php/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272236589,"owners_count":24897452,"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-08-26T02:00:07.904Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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-12-07T04:20:22.417Z","updated_at":"2025-08-26T16:21:47.312Z","avatar_url":"https://github.com/hydrogen-dev.png","language":"PHP","readme":"# Hydrogen Integration API\nThe Hydrogen Integration API\n- API version: 1.3.1\n  - Build date: 16-07-2021\n\nFor more information, please visit [https://www.hydrogenplatform.com/apis](https://www.hydrogenplatform.com/apis)\n\n## Documentation\n\nhttps://www.hydrogenplatform.com/docs/integration/v1\n\n## Requirements\n\nPHP 5.5 and later\n\n## Installation\n\n### Install via Composer\n\nPlease run `composer require hydrogenplatform/hydrogen-integration-api`\n\n\n## Getting Started\n\nPlease first follow the [installation](#installation) instructions. Then make sure you use the proper base URL:\n\n### Base URL\nCreate an authentication object(**AuthApiClient**) and pass the **getDefaultConfiguration** method\n with environment parameter.\n \n**Sandbox URL**\n\n\\com\\hydrogen\\integration\\AuthApiClient::\n        getDefaultConfiguration(\\com\\hydrogen\\integration\\Environment::SANDBOX)\n        \n**Production URL**\n\n\\com\\hydrogen\\integration\\AuthApiClient::\n        getDefaultConfiguration(\\com\\hydrogen\\integration\\Environment::PRODUCTION)\n### Sample Code\nNow you are ready to execute the following PHP code:\n\n```php\n\u003c?php\nrequire_once('../vendor/autoload.php');\ntry {\n// Use one of the below method to generate oauth token\n// 1) Generate Token for client credentials\n$config =\n        \\com\\hydrogen\\integration\\AuthApiClient::getDefaultConfiguration(\\com\\hydrogen\\integration\\Environment::PRODUCTION)\n            -\u003ecreateClientCredential(\"MYCLIENTID\",\n             \"MYCLIENTSECRET\");\n// 2) Generate Token for password credentials\n$config =\n        \\com\\hydrogen\\integration\\AuthApiClient::\n        getDefaultConfiguration(\\com\\hydrogen\\integration\\Environment::PRODUCTION)-\u003ecreatePasswordCredential(\"MYCLIENTID\",\"MYCLIENTSECRET\"\n                      ,\"MYUSERNAME\", \"MYPASSWORD\");\n// 3) Generate Token for client_token\n$config = \\com\\hydrogen\\integration\\AuthApiClient::getDefaultConfiguration(\\com\\hydrogen\\integration\\Environment::PRODUCTION)\n                -\u003ecreateClientTokenCredential(\"MYCLIENTID\",\"MYCLIENTSECRET\", \"CLIENT_TOKEN\");\n} catch (\\com\\hydrogen\\integration\\ApiException $e) {\n    print_r($e);\n}\n$apiInstance = new com\\hydrogen\\integration\\Api\\ACHApi(\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$nucleus_funding_id = \"nucleus_funding_id_example\"; // string | nucleus_funding_id\n\ntry {\n    $result = $apiInstance-\u003ecancelAchTransferUsingDelete($nucleus_funding_id);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling ACHApi-\u003ecancelAchTransferUsingDelete: ', $e-\u003egetMessage(), PHP_EOL;\n}\n\n?\u003e\n```\n\n## Author\nThe Hydrogen Technology Corporation\n\nhttps://www.hydrogenplatform.com\n\n*Generated using [Swagger Codegen](https://github.com/swagger-api/swagger-codegen)*","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhydrogen-dev%2Fintegration-sdk-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhydrogen-dev%2Fintegration-sdk-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhydrogen-dev%2Fintegration-sdk-php/lists"}