enfins / api_client
Merchant client library
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 4 305
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- ext-curl: *
- ext-json: *
- khr/php-mcurl-client: ^3.1
- netresearch/jsonmapper: ^1.6
This package is not auto-updated.
Last update: 2021-09-17 00:06:57 UTC
README
Simple desigion to make all merchant's request to the Enfins API.
Link to the official documentation: https://app.swaggerhub.com/apis-docs/enfins.com/merchant_en/v1
The library currently provides the following operations according to the enfins official doccumentation:
- /create_bill
- /find/by_bill_id
- /find/by_m_order
- /payout
- /payout_card
- /payout_crypto
- /balance
- /rates
- /stats
- /history
Requirements
PHP 5.5 and later
Usage
Before you can create a new Api client class instance you have to prepare and save your unique merchant ident and secret key in your merchant account settings. Link for register like a partner - https://enfins.com/ru/partner/registration. Then create your merchant there.
And download api client library
composer require enfins/api_client
Create Api client and add your ident and secret key there.
$secret_key = 'SECRET_KEY';
$ident = 'IDENT';
$api = new ApiClient($ident,$secret_key,'https://api.enfins.com/v1');
Via ApiClient object you can send requests to the Enfins Api.
try {
$createBillResponse = $api->createBill("UAH",200,"UNIQUE_MERCHANT_ORDER","create example bill",["testing"=>true]);
} catch (ApiException $e) {
} catch (Exception $e) {
}