Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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


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

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Hydrogen Nucleus API

Hydrogen Nucleus API
- API version: 1.9.5
- Build date: 01-07-2021

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

## Documentation

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

## Requirements

1. PHP 5.5 and later

## Installation

### Install via Composer

Please run `composer require hydrogenplatform/hydrogen-nucleus-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\nucleus\AuthApiClient::
getDefaultConfiguration(\com\hydrogen\nucleus\Environment::SANDBOX)

**Production URL**

\com\hydrogen\nucleus\AuthApiClient::
getDefaultConfiguration(\com\hydrogen\nucleus\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\nucleus\AuthApiClient::
getDefaultConfiguration(\com\hydrogen\nucleus\Environment::PRODUCTION)->createPasswordCredential("MYCLIENTID","MYCLIENTSECRET"
,"MYUSERNAME", "MYPASSWORD");
// 3) Generate Token for client_token
$config = \com\hydrogen\nucleus\AuthApiClient::getDefaultConfiguration(\com\hydrogen\nucleus\Environment::PRODUCTION)
->createClientTokenCredential("MYCLIENTID","MYCLIENTSECRET", "CLIENT_TOKEN");
} catch (\com\hydrogen\nucleus\ApiException $e) {
print_r($e);
}
$apiInstance = new com\hydrogen\nucleus\Api\AccountApi(
// 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
);
$alloc_request = new \com\hydrogen\nucleus\Model\AccountAllocationMapping(); // \com\hydrogen\nucleus\Model\AccountAllocationMapping | allocRequest

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

?>
```

## Author
The Hydrogen Technology Corporation

https://www.hydrogenplatform.com

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