Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hydrogen-dev/electron-sdk-php


https://github.com/hydrogen-dev/electron-sdk-php

Last synced: 18 days ago
JSON representation

Awesome Lists containing this project

README

        

# Hydrogen Electron API
The Hydrogen Electron API
- API version: 1.3.1
- Build date: 27-12-2021

For more information, please visit [https://www.hydrogenplatform.com/apis](https://www.hydrogenplatform.com/apis)

## Documentation

https://www.hydrogenplatform.com/docs/electron/v1

## Requirements

PHP 5.5 and later

## Installation

### Install via Composer

Please run `composer require hydrogenplatform/hydrogen-electron-api`

## Getting Started

Please first follow the [installation](#installation) instructions. Then make sure you use the proper base URL:

### Base URL
Create an authentication object(**AuthApiClient**) and pass the **getDefaultConfiguration** method
with environment parameter.

**Sandbox URL**

\com\hydrogen\electron\AuthApiClient::
getDefaultConfiguration(\com\hydrogen\electron\Environment::SANDBOX)

**Production URL**

\com\hydrogen\electron\AuthApiClient::
getDefaultConfiguration(\com\hydrogen\electron\Environment::PRODUCTION)
### Sample Code
Now you are ready to execute the following PHP code:
```php
createClientCredential("MYCLIENTID",
"MYCLIENTSECRET");
// 2) Generate Token for password credentials
$config =
\com\hydrogen\electron\AuthApiClient::
getDefaultConfiguration(\com\hydrogen\electron\Environment::PRODUCTION)->createPasswordCredential("MYCLIENTID","MYCLIENTSECRET"
,"MYUSERNAME", "MYPASSWORD");
// 3) Generate Token for client_token
$config = \com\hydrogen\electron\AuthApiClient::getDefaultConfiguration(\com\hydrogen\electron\Environment::PRODUCTION)
->createClientTokenCredential("MYCLIENTID","MYCLIENTSECRET", "CLIENT_TOKEN");
} catch (\com\hydrogen\electron\ApiException $e) {
print_r($e);
}
$apiInstance = new com\hydrogen\electron\Api\ACHApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$ach_card_request_co = new \com\hydrogen\electron\Model\AchCardRequestCO(); // \com\hydrogen\electron\Model\AchCardRequestCO | achCardRequestCO

try {
$result = $apiInstance->fundCardUsingPost($ach_card_request_co);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ACHApi->fundCardUsingPost: ', $e->getMessage(), PHP_EOL;
}

?>
```

## Author
The Hydrogen Technology Corporation

https://www.hydrogenplatform.com

*Generated using [Swagger Codegen](https://github.com/swagger-api/swagger-codegen)*