All URIs are relative to https://localhost
Method | HTTP request | Description |
---|---|---|
kycDeleteLegalBoardMember | DELETE /v2.1/Kyc/users/legal/{UserId}/boardmembers/{BoardMemberId} | |
kycDeleteLegalShareHolderNatural | DELETE /v2.1/Kyc/users/legal/{UserId}/shareholders/natural/{ShareHolderId} | |
kycGetFile | GET /v2.1/Kyc/document/{DocumentId} | |
kycGetLegal | GET /v2.1/Kyc/users/legal/{UserId} | |
kycGetLegalBoardMember | GET /v2.1/Kyc/users/legal/{UserId}/boardmembers/{BoardMemberId} | |
kycGetLegalBoardMembers | GET /v2.1/Kyc/users/legal/{UserId}/boardmembers | |
kycGetLegalList | GET /v2.1/Kyc/users/legal | |
kycGetLegalShareHolderNatural | GET /v2.1/Kyc/users/legal/{UserId}/shareholders/natural/{ShareHolderId} | |
kycGetLegalShareHolders | GET /v2.1/Kyc/users/legal/{UserId}/shareholders/natural | |
kycGetNaturaList | GET /v2.1/Kyc/users/natural | |
kycGetNatural | GET /v2.1/Kyc/users/natural/{UserId} | |
kycGetValidation | GET /v2.1/Kyc/users/natural/{UserId}/validation | |
kycGetValidationLegal | GET /v2.1/Kyc/users/legal/{UserId}/validation | |
kycPostDocument | POST /v2.1/Kyc/users/{UserId}/documents/new/{DocumentType} | |
kycPostDocumentBoardMember | POST /v2.1/Kyc/users/legal/{UserId}/boardmember/{BoardMemberId}/documents/new/{DocumentType} | |
kycPostDocumentShareholder | POST /v2.1/Kyc/users/legal/{UserId}/shareholder/{ShareholderId}/documents/new/{DocumentType} | |
kycPostLegal | POST /v2.1/Kyc/users/legal/{UserId} | |
kycPostLegalBoardMember | POST /v2.1/Kyc/users/legal/{UserId}/boardmembers | |
kycPostLegalShareHolder | POST /v2.1/Kyc/users/legal/{UserId}/shareholders/natural | |
kycPostNatural | POST /v2.1/Kyc/users/natural/{UserId} | |
kycPutDocument | PUT /v2.1/Kyc/users/{UserId}/documents/add/{DocumentType} | |
kycPutDocumentBoardMember | PUT /v2.1/Kyc/users/legal/{UserId}/boardmember/{BoardMemberId}/documents/add/{DocumentType} | |
kycPutDocumentShareholder | PUT /v2.1/Kyc/users/legal/{UserId}/shareholder/{ShareholderId}/documents/add/{DocumentType} | |
kycPutLegal | PUT /v2.1/Kyc/users/legal/{UserId} | |
kycPutLegalBoardMember | PUT /v2.1/Kyc/users/legal/{UserId}/boardmembers/{BoardMemberId} | |
kycPutLegalShareHolder | PUT /v2.1/Kyc/users/legal/{UserId}/shareholders/natural/{ShareHolderId} | |
kycPutRequest | PUT /v2.1/Kyc/users/natural/{UserId}/requestValidation | |
kycPutRequestLegal | PUT /v2.1/Kyc/users/legal/{UserId}/requestValidation |
string kycDeleteLegalBoardMember($board_member_id, $user_id)
<?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\KycApi(
// 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
);
$board_member_id = 789; // int |
$user_id = "user_id_example"; // string |
try {
$result = $apiInstance->kycDeleteLegalBoardMember($board_member_id, $user_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycDeleteLegalBoardMember: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
board_member_id | int | ||
user_id | string |
string
- 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]
string kycDeleteLegalShareHolderNatural($user_id, $share_holder_id)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$share_holder_id = 789; // int |
try {
$result = $apiInstance->kycDeleteLegalShareHolderNatural($user_id, $share_holder_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycDeleteLegalShareHolderNatural: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
share_holder_id | int |
string
- 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]
\SplFileObject kycGetFile($document_id)
<?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\KycApi(
// 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
);
$document_id = 789; // int |
try {
$result = $apiInstance->kycGetFile($document_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycGetFile: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
document_id | int |
- Content-Type: Not defined
- Accept: text/plain, application/json, text/json, application/octet-stream
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\KycUserValidationLevelLegalResponse kycGetLegal($user_id)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
try {
$result = $apiInstance->kycGetLegal($user_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycGetLegal: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int |
\MarketPay\Model\KycUserValidationLevelLegalResponse
- 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\KycUserValidationBoardMemberListItemResponse kycGetLegalBoardMember($board_member_id, $user_id)
<?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\KycApi(
// 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
);
$board_member_id = 789; // int |
$user_id = "user_id_example"; // string |
try {
$result = $apiInstance->kycGetLegalBoardMember($board_member_id, $user_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycGetLegalBoardMember: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
board_member_id | int | ||
user_id | string |
\MarketPay\Model\KycUserValidationBoardMemberListItemResponse
- 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\KycUserValidationLevelLegalBoardMembersListResponse kycGetLegalBoardMembers($user_id)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
try {
$result = $apiInstance->kycGetLegalBoardMembers($user_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycGetLegalBoardMembers: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int |
\MarketPay\Model\KycUserValidationLevelLegalBoardMembersListResponse
- 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\KycUserValidationLevelLegalResponseResponseList kycGetLegalList($page, $per_page, $name_contains, $fiscal_id_contains)
<?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\KycApi(
// 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 |
$name_contains = "name_contains_example"; // string |
$fiscal_id_contains = "fiscal_id_contains_example"; // string |
try {
$result = $apiInstance->kycGetLegalList($page, $per_page, $name_contains, $fiscal_id_contains);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycGetLegalList: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
page | int | [optional] | |
per_page | int | [optional] | |
name_contains | string | [optional] | |
fiscal_id_contains | string | [optional] |
\MarketPay\Model\KycUserValidationLevelLegalResponseResponseList
- 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\KycUserValidationShareHolderListItemResponseNatural kycGetLegalShareHolderNatural($user_id, $share_holder_id)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$share_holder_id = 789; // int |
try {
$result = $apiInstance->kycGetLegalShareHolderNatural($user_id, $share_holder_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycGetLegalShareHolderNatural: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
share_holder_id | int |
\MarketPay\Model\KycUserValidationShareHolderListItemResponseNatural
- 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\KycUserValidationLevelLegalShareHoldersListResponse kycGetLegalShareHolders($user_id)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
try {
$result = $apiInstance->kycGetLegalShareHolders($user_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycGetLegalShareHolders: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int |
\MarketPay\Model\KycUserValidationLevelLegalShareHoldersListResponse
- 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\KycUserValidationLevelNaturalResponseResponseList kycGetNaturaList($page, $per_page, $first_name_contains, $last_name_contains, $id_card_contains)
<?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\KycApi(
// 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 |
$first_name_contains = "first_name_contains_example"; // string |
$last_name_contains = "last_name_contains_example"; // string |
$id_card_contains = "id_card_contains_example"; // string |
try {
$result = $apiInstance->kycGetNaturaList($page, $per_page, $first_name_contains, $last_name_contains, $id_card_contains);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycGetNaturaList: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
page | int | [optional] | |
per_page | int | [optional] | |
first_name_contains | string | [optional] | |
last_name_contains | string | [optional] | |
id_card_contains | string | [optional] |
\MarketPay\Model\KycUserValidationLevelNaturalResponseResponseList
- 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\KycUserValidationLevelNaturalResponse kycGetNatural($user_id)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
try {
$result = $apiInstance->kycGetNatural($user_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycGetNatural: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int |
\MarketPay\Model\KycUserValidationLevelNaturalResponse
- 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\KycValidationUserStatusResponse kycGetValidation($user_id)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
try {
$result = $apiInstance->kycGetValidation($user_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycGetValidation: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int |
\MarketPay\Model\KycValidationUserStatusResponse
- 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\KycValidationUserLegalStatusResponse kycGetValidationLegal($user_id)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
try {
$result = $apiInstance->kycGetValidationLegal($user_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycGetValidationLegal: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int |
\MarketPay\Model\KycValidationUserLegalStatusResponse
- 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\KycFileUploadResponse kycPostDocument($user_id, $document_type, $file, $file_content_type)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$document_type = "document_type_example"; // string |
$file = "/path/to/file.txt"; // \SplFileObject |
$file_content_type = "file_content_type_example"; // string |
try {
$result = $apiInstance->kycPostDocument($user_id, $document_type, $file, $file_content_type);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycPostDocument: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
document_type | string | ||
file | \SplFileObject | ||
file_content_type | string | [optional] |
\MarketPay\Model\KycFileUploadResponse
- Content-Type: multipart/form-data
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\KycFileUploadResponse kycPostDocumentBoardMember($user_id, $board_member_id, $document_type, $file, $file_content_type)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$board_member_id = 789; // int |
$document_type = "document_type_example"; // string |
$file = "/path/to/file.txt"; // \SplFileObject |
$file_content_type = "file_content_type_example"; // string |
try {
$result = $apiInstance->kycPostDocumentBoardMember($user_id, $board_member_id, $document_type, $file, $file_content_type);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycPostDocumentBoardMember: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
board_member_id | int | ||
document_type | string | ||
file | \SplFileObject | ||
file_content_type | string | [optional] |
\MarketPay\Model\KycFileUploadResponse
- Content-Type: multipart/form-data
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\KycFileUploadResponse kycPostDocumentShareholder($user_id, $shareholder_id, $document_type, $file, $file_content_type)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$shareholder_id = 789; // int |
$document_type = "document_type_example"; // string |
$file = "/path/to/file.txt"; // \SplFileObject |
$file_content_type = "file_content_type_example"; // string |
try {
$result = $apiInstance->kycPostDocumentShareholder($user_id, $shareholder_id, $document_type, $file, $file_content_type);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycPostDocumentShareholder: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
shareholder_id | int | ||
document_type | string | ||
file | \SplFileObject | ||
file_content_type | string | [optional] |
\MarketPay\Model\KycFileUploadResponse
- Content-Type: multipart/form-data
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\KycUserValidationLevelLegalResponse kycPostLegal($user_id, $body)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$body = new \MarketPay\Model\KycUserLegalPut(); // \MarketPay\Model\KycUserLegalPut |
try {
$result = $apiInstance->kycPostLegal($user_id, $body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycPostLegal: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
body | \MarketPay\Model\KycUserLegalPut | [optional] |
\MarketPay\Model\KycUserValidationLevelLegalResponse
- Content-Type: application/json-patch+json, application/json, text/json, application/_*+json
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\KycBoardMemberResponse kycPostLegalBoardMember($user_id, $body)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$body = new \MarketPay\Model\KycUserValidationBoardMemberPost(); // \MarketPay\Model\KycUserValidationBoardMemberPost |
try {
$result = $apiInstance->kycPostLegalBoardMember($user_id, $body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycPostLegalBoardMember: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
body | \MarketPay\Model\KycUserValidationBoardMemberPost | [optional] |
\MarketPay\Model\KycBoardMemberResponse
- Content-Type: application/json-patch+json, application/json, text/json, application/_*+json
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\KycShareHolderResponse kycPostLegalShareHolder($user_id, $body)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$body = new \MarketPay\Model\KycUserValidationShareHolderNaturalPost(); // \MarketPay\Model\KycUserValidationShareHolderNaturalPost |
try {
$result = $apiInstance->kycPostLegalShareHolder($user_id, $body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycPostLegalShareHolder: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
body | \MarketPay\Model\KycUserValidationShareHolderNaturalPost | [optional] |
\MarketPay\Model\KycShareHolderResponse
- Content-Type: application/json-patch+json, application/json, text/json, application/_*+json
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\KycUserValidationLevelNaturalResponse kycPostNatural($user_id, $body)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$body = new \MarketPay\Model\KycUserNaturalPut(); // \MarketPay\Model\KycUserNaturalPut |
try {
$result = $apiInstance->kycPostNatural($user_id, $body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycPostNatural: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
body | \MarketPay\Model\KycUserNaturalPut | [optional] |
\MarketPay\Model\KycUserValidationLevelNaturalResponse
- Content-Type: application/json-patch+json, application/json, text/json, application/_*+json
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\KycFileUploadResponse kycPutDocument($user_id, $document_type, $file, $file_content_type)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$document_type = "document_type_example"; // string |
$file = "/path/to/file.txt"; // \SplFileObject |
$file_content_type = "file_content_type_example"; // string |
try {
$result = $apiInstance->kycPutDocument($user_id, $document_type, $file, $file_content_type);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycPutDocument: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
document_type | string | ||
file | \SplFileObject | ||
file_content_type | string | [optional] |
\MarketPay\Model\KycFileUploadResponse
- Content-Type: multipart/form-data
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\KycFileUploadResponse kycPutDocumentBoardMember($user_id, $board_member_id, $document_type, $file, $file_content_type)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$board_member_id = 789; // int |
$document_type = "document_type_example"; // string |
$file = "/path/to/file.txt"; // \SplFileObject |
$file_content_type = "file_content_type_example"; // string |
try {
$result = $apiInstance->kycPutDocumentBoardMember($user_id, $board_member_id, $document_type, $file, $file_content_type);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycPutDocumentBoardMember: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
board_member_id | int | ||
document_type | string | ||
file | \SplFileObject | ||
file_content_type | string | [optional] |
\MarketPay\Model\KycFileUploadResponse
- Content-Type: multipart/form-data
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\KycFileUploadResponse kycPutDocumentShareholder($user_id, $share_holder_id, $document_type, $file, $file_content_type)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$share_holder_id = 789; // int |
$document_type = "document_type_example"; // string |
$file = "/path/to/file.txt"; // \SplFileObject |
$file_content_type = "file_content_type_example"; // string |
try {
$result = $apiInstance->kycPutDocumentShareholder($user_id, $share_holder_id, $document_type, $file, $file_content_type);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycPutDocumentShareholder: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
share_holder_id | int | ||
document_type | string | ||
file | \SplFileObject | ||
file_content_type | string | [optional] |
\MarketPay\Model\KycFileUploadResponse
- Content-Type: multipart/form-data
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\KycUserValidationLevelLegalResponse kycPutLegal($user_id, $body)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$body = new \MarketPay\Model\KycUserLegalPut(); // \MarketPay\Model\KycUserLegalPut |
try {
$result = $apiInstance->kycPutLegal($user_id, $body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycPutLegal: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
body | \MarketPay\Model\KycUserLegalPut | [optional] |
\MarketPay\Model\KycUserValidationLevelLegalResponse
- Content-Type: application/json-patch+json, application/json, text/json, application/_*+json
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\KycBoardMemberResponse kycPutLegalBoardMember($board_member_id, $user_id, $body)
<?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\KycApi(
// 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
);
$board_member_id = 789; // int |
$user_id = "user_id_example"; // string |
$body = new \MarketPay\Model\KycUserValidationBoardMemberPut(); // \MarketPay\Model\KycUserValidationBoardMemberPut |
try {
$result = $apiInstance->kycPutLegalBoardMember($board_member_id, $user_id, $body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycPutLegalBoardMember: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
board_member_id | int | ||
user_id | string | ||
body | \MarketPay\Model\KycUserValidationBoardMemberPut | [optional] |
\MarketPay\Model\KycBoardMemberResponse
- Content-Type: application/json-patch+json, application/json, text/json, application/_*+json
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\KycUserValidationShareHolderListItemResponseNatural kycPutLegalShareHolder($user_id, $share_holder_id, $body)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$share_holder_id = 789; // int |
$body = new \MarketPay\Model\KycUserValidationShareHolderNaturalPut(); // \MarketPay\Model\KycUserValidationShareHolderNaturalPut |
try {
$result = $apiInstance->kycPutLegalShareHolder($user_id, $share_holder_id, $body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycPutLegalShareHolder: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
share_holder_id | int | ||
body | \MarketPay\Model\KycUserValidationShareHolderNaturalPut | [optional] |
\MarketPay\Model\KycUserValidationShareHolderListItemResponseNatural
- Content-Type: application/json-patch+json, application/json, text/json, application/_*+json
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\KycValidationRequestResponse kycPutRequest($user_id, $body)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$body = new \MarketPay\Model\KycIdentificationRequest(); // \MarketPay\Model\KycIdentificationRequest |
try {
$result = $apiInstance->kycPutRequest($user_id, $body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycPutRequest: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
body | \MarketPay\Model\KycIdentificationRequest | [optional] |
\MarketPay\Model\KycValidationRequestResponse
- Content-Type: application/json-patch+json, application/json, text/json, application/_*+json
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\MarketPay\Model\KycValidationRequestResponse kycPutRequestLegal($user_id, $body)
<?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\KycApi(
// 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
);
$user_id = 789; // int |
$body = new \MarketPay\Model\KycIdentificationRequest(); // \MarketPay\Model\KycIdentificationRequest |
try {
$result = $apiInstance->kycPutRequestLegal($user_id, $body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling KycApi->kycPutRequestLegal: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_id | int | ||
body | \MarketPay\Model\KycIdentificationRequest | [optional] |
\MarketPay\Model\KycValidationRequestResponse
- Content-Type: application/json-patch+json, application/json, text/json, application/_*+json
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]