All URIs are relative to https://localhost
Method | HTTP request | Description |
---|---|---|
meFeaturesList | GET /v2.1/Me/Features | |
meGet | GET /v2.1/Me | |
meGetList | GET /v2.1/Me/Fees | |
meGetPayIns | GET /v2.1/Me/TransferMethods/available/payins | |
meGet_0 | GET /v2.1/Me/Fees/{Currency} |
\MarketPay\Model\FeatureResponse[] meFeaturesList()
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
$config = MarketPay\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new MarketPay\Api\MeApi(
// 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
);
try {
$result = $apiInstance->meFeaturesList();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MeApi->meFeaturesList: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
\MarketPay\Model\FeatureResponse[]
- Content-Type: Not defined
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\MeResponse meGet()
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
$config = MarketPay\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new MarketPay\Api\MeApi(
// 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
);
try {
$result = $apiInstance->meGet();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MeApi->meGet: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\WalletClientInstrumentResponseResponseList meGetList($page, $per_page)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
$config = MarketPay\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new MarketPay\Api\MeApi(
// 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
);
$page = 56; // int |
$per_page = 56; // int |
try {
$result = $apiInstance->meGetList($page, $per_page);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MeApi->meGetList: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
page | int | [optional] | |
per_page | int | [optional] |
\MarketPay\Model\WalletClientInstrumentResponseResponseList
- Content-Type: Not defined
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\TransferMethodsResponseResponseList meGetPayIns($page, $per_page, $currency)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
$config = MarketPay\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new MarketPay\Api\MeApi(
// 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
);
$page = 56; // int |
$per_page = 56; // int |
$currency = "currency_example"; // string |
try {
$result = $apiInstance->meGetPayIns($page, $per_page, $currency);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MeApi->meGetPayIns: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
page | int | [optional] | |
per_page | int | [optional] | |
currency | string | [optional] |
\MarketPay\Model\TransferMethodsResponseResponseList
- Content-Type: Not defined
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\WalletClientInstrumentResponse meGet_0($currency)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
$config = MarketPay\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new MarketPay\Api\MeApi(
// 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
);
$currency = "currency_example"; // string |
try {
$result = $apiInstance->meGet_0($currency);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MeApi->meGet_0: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
currency | string |
\MarketPay\Model\WalletClientInstrumentResponse
- Content-Type: Not defined
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]