No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
PHP 7.4 and later. Should also work with PHP 8.0.
To install the bindings via Composer, add the following to composer.json:
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/GIT_USER_ID/GIT_REPO_ID.git"
}
],
"require": {
"GIT_USER_ID/GIT_REPO_ID": "*@dev"
}
}Then run composer install
Download the files and include autoload.php:
<?php
require_once('/path/to/OpenAPIClient-php/vendor/autoload.php');Please follow the installation procedure and then run the following:
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiKey
$config = BlincPartners\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = BlincPartners\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');
$apiInstance = new BlincPartners\Api\BlincPartnersApi(
// 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
);
$payment_onboard_session_input_dto = new \BlincPartners\Model\PaymentOnboardSessionInputDto(); // \BlincPartners\Model\PaymentOnboardSessionInputDto
try {
$result = $apiInstance->createSession($payment_onboard_session_input_dto);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling BlincPartnersApi->createSession: ', $e->getMessage(), PHP_EOL;
}All URIs are relative to http://localhost
| Class | Method | HTTP request | Description |
|---|---|---|---|
| BlincPartnersApi | createSession | POST /partners/v1/session | |
| BlincPartnersApi | getPayment | GET /partners/v1/commitment/{paymentCommitmentId} |
- PaymentCommitmentExpandedOutputDto
- PaymentCommitmentInstallmentStatus
- PaymentCommitmentMerchantOutputDto
- PaymentCommitmentPaymentOutputDto
- PaymentCommitmentProductDto
- PaymentOnboardSessionInputDto
- PaymentOnboardSessionOutputDto
Authentication schemes defined for the API:
- Type: Bearer authentication (JWT)
- Type: API key
- API key parameter name: x-api-key
- Location: HTTP header
To run the tests, use:
composer install
vendor/bin/phpunitThis PHP package is automatically generated by the OpenAPI Generator project:
- API version:
v1 - Build package:
org.openapitools.codegen.languages.PhpClientCodegen