All URIs are relative to https://api-sandbox.transferzero.com/v1
Method | HTTP request | Description |
---|---|---|
deletePayoutMethod | DELETE /payout_methods/{Payout Method ID} | Deleting a payout method |
getPayoutMethod | GET /payout_methods/{Payout Method ID} | Fetching a payout method |
getPayoutMethods | GET /payout_methods | Listing payout methods |
patchPayoutMethod | PATCH /payout_methods/{Payout Method ID} | Updating a payout method |
postPayoutMethods | POST /payout_methods | Creating a payout method |
PayoutMethodResponse deletePayoutMethod(payoutMethodID)
Deleting a payout method
Deletes a single payout method by the Payout Method ID
import { PayoutMethodsApi } from 'transferzero-sdk';
// Configure API key authorization
const apiClient = new ApiClient();
apiClient.apiKey = '<key>';
apiClient.apiSecret = '<secret>';
apiClient.basePath = 'https://api-sandbox.transferzero.com/v1';
let apiInstance = new PayoutMethodsApi(apiClient);
apiInstance.deletePayoutMethod(payoutMethodID).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
if (error.isValidationError) {
let result = error.getResponseObject();
console.log(result);
console.error("WARN: Validation error occurred when calling the endpoint");
} else {
console.error("Exception when calling PayoutMethodsApi#deletePayoutMethod");
throw error;
}
});
Name | Type | Description | Notes |
---|---|---|---|
payoutMethodID | String | ID of the payout method to delete. Example: `/v1/payout_methods/bf9ff782-e182-45ac-abea-5bce83ad6670` |
You can set the API Key and Secret by passing a config object when creating an ApiClient:
const apiClient = new ApiClient({
apiKey: '<key>',
apiSecret: '<secret>',
basePath: 'https://api-sandbox.transferzero.com/v1'
});
Or by setting the properties on an ApiClient instance:
const apiClient = new ApiClient();
apiClient.apiKey = '<key>';
apiClient.apiSecret = '<secret>';
apiClient.basePath = 'https://api-sandbox.transferzero.com/v1';
- Content-Type: Not defined
- Accept: application/json
PayoutMethodResponse getPayoutMethod(payoutMethodID)
Fetching a payout method
Show a payout method by id
import { PayoutMethodsApi } from 'transferzero-sdk';
// Configure API key authorization
const apiClient = new ApiClient();
apiClient.apiKey = '<key>';
apiClient.apiSecret = '<secret>';
apiClient.basePath = 'https://api-sandbox.transferzero.com/v1';
let apiInstance = new PayoutMethodsApi(apiClient);
apiInstance.getPayoutMethod(payoutMethodID).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
if (error.isValidationError) {
let result = error.getResponseObject();
console.log(result);
console.error("WARN: Validation error occurred when calling the endpoint");
} else {
console.error("Exception when calling PayoutMethodsApi#getPayoutMethod");
throw error;
}
});
Name | Type | Description | Notes |
---|---|---|---|
payoutMethodID | String | ID of the payout method to get. Example: `/v1/payout_methods/bf9ff782-e182-45ac-abea-5bce83ad6670` |
You can set the API Key and Secret by passing a config object when creating an ApiClient:
const apiClient = new ApiClient({
apiKey: '<key>',
apiSecret: '<secret>',
basePath: 'https://api-sandbox.transferzero.com/v1'
});
Or by setting the properties on an ApiClient instance:
const apiClient = new ApiClient();
apiClient.apiKey = '<key>';
apiClient.apiSecret = '<secret>';
apiClient.basePath = 'https://api-sandbox.transferzero.com/v1';
- Content-Type: Not defined
- Accept: application/json
PayoutMethodListResponse getPayoutMethods(opts)
Listing payout methods
List available payout methods
import { PayoutMethodsApi } from 'transferzero-sdk';
// Configure API key authorization
const apiClient = new ApiClient();
apiClient.apiKey = '<key>';
apiClient.apiSecret = '<secret>';
apiClient.basePath = 'https://api-sandbox.transferzero.com/v1';
let apiInstance = new PayoutMethodsApi(apiClient);
let opts = {
'state': ["null"] // [String] | Allows filtering results by `state` of the payout method. Example: `/v1/payout_methods?state[]=enabled`
'type': ["null"] // [String] | Allows filtering results by the specified type. Example: `/v1/payout_methods?type[]=NGN::Bank`
'senderId': "senderId_example" // String | Allows filtering results by the specified sender id. Example: `/v1/payout_methods?sender_id=bf9ff782-e182-45ac-abea-5bce83ad6670`
'page': 1 // Number | The page number to request (defaults to 1)
'per': 10 // Number | The number of results to load per page (defaults to 10)
'createdAtFrom': "createdAtFrom_example" // String | Start date to filter recipients by created_at range Allows filtering results by the specified `created_at` timeframe. Example: `/v1/recipients?created_at_from=2018-06-06&created_at_to=2018-06-08`
'createdAtTo': "createdAtTo_example" // String | End date to filter recipients by created_at range Allows filtering results by the specified `created_at` timeframe. Example: `/v1/recipients?created_at_from=2018-06-06&created_at_to=2018-06-08`
};
apiInstance.getPayoutMethods(opts).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
if (error.isValidationError) {
let result = error.getResponseObject();
console.log(result);
console.error("WARN: Validation error occurred when calling the endpoint");
} else {
console.error("Exception when calling PayoutMethodsApi#getPayoutMethods");
throw error;
}
});
Name | Type | Description | Notes |
---|---|---|---|
state | [String] | Allows filtering results by `state` of the payout method. Example: `/v1/payout_methods?state[]=enabled` | [optional] |
type | [String] | Allows filtering results by the specified type. Example: `/v1/payout_methods?type[]=NGN::Bank` | [optional] |
senderId | String | Allows filtering results by the specified sender id. Example: `/v1/payout_methods?sender_id=bf9ff782-e182-45ac-abea-5bce83ad6670` | [optional] |
page | Number | The page number to request (defaults to 1) | [optional] |
per | Number | The number of results to load per page (defaults to 10) | [optional] |
createdAtFrom | String | Start date to filter recipients by created_at range Allows filtering results by the specified `created_at` timeframe. Example: `/v1/recipients?created_at_from=2018-06-06&created_at_to=2018-06-08` | [optional] |
createdAtTo | String | End date to filter recipients by created_at range Allows filtering results by the specified `created_at` timeframe. Example: `/v1/recipients?created_at_from=2018-06-06&created_at_to=2018-06-08` | [optional] |
You can set the API Key and Secret by passing a config object when creating an ApiClient:
const apiClient = new ApiClient({
apiKey: '<key>',
apiSecret: '<secret>',
basePath: 'https://api-sandbox.transferzero.com/v1'
});
Or by setting the properties on an ApiClient instance:
const apiClient = new ApiClient();
apiClient.apiKey = '<key>';
apiClient.apiSecret = '<secret>';
apiClient.basePath = 'https://api-sandbox.transferzero.com/v1';
- Content-Type: Not defined
- Accept: application/json
PayoutMethodResponse patchPayoutMethod(payoutMethodIDpayoutMethod)
Updating a payout method
Updates a single payout method by the Payout Method ID
import { PayoutMethodsApi } from 'transferzero-sdk';
// Configure API key authorization
const apiClient = new ApiClient();
apiClient.apiKey = '<key>';
apiClient.apiSecret = '<secret>';
apiClient.basePath = 'https://api-sandbox.transferzero.com/v1';
let apiInstance = new PayoutMethodsApi(apiClient);
apiInstance.patchPayoutMethod(payoutMethodIDpayoutMethod).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
if (error.isValidationError) {
let result = error.getResponseObject();
console.log(result);
console.error("WARN: Validation error occurred when calling the endpoint");
} else {
console.error("Exception when calling PayoutMethodsApi#patchPayoutMethod");
throw error;
}
});
Name | Type | Description | Notes |
---|---|---|---|
payoutMethodID | String | ID of the payout method to get. Example: `/v1/payout_methods/bf9ff782-e182-45ac-abea-5bce83ad6670` | |
payoutMethod | PayoutMethod |
You can set the API Key and Secret by passing a config object when creating an ApiClient:
const apiClient = new ApiClient({
apiKey: '<key>',
apiSecret: '<secret>',
basePath: 'https://api-sandbox.transferzero.com/v1'
});
Or by setting the properties on an ApiClient instance:
const apiClient = new ApiClient();
apiClient.apiKey = '<key>';
apiClient.apiSecret = '<secret>';
apiClient.basePath = 'https://api-sandbox.transferzero.com/v1';
- Content-Type: application/json
- Accept: application/json
PayoutMethodResponse postPayoutMethods(payoutMethodRequest)
Creating a payout method
Creates a new payout method in our system.
import { PayoutMethodsApi } from 'transferzero-sdk';
// Configure API key authorization
const apiClient = new ApiClient();
apiClient.apiKey = '<key>';
apiClient.apiSecret = '<secret>';
apiClient.basePath = 'https://api-sandbox.transferzero.com/v1';
let apiInstance = new PayoutMethodsApi(apiClient);
apiInstance.postPayoutMethods(payoutMethodRequest).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
if (error.isValidationError) {
let result = error.getResponseObject();
console.log(result);
console.error("WARN: Validation error occurred when calling the endpoint");
} else {
console.error("Exception when calling PayoutMethodsApi#postPayoutMethods");
throw error;
}
});
Name | Type | Description | Notes |
---|---|---|---|
payoutMethodRequest | PayoutMethodRequest |
You can set the API Key and Secret by passing a config object when creating an ApiClient:
const apiClient = new ApiClient({
apiKey: '<key>',
apiSecret: '<secret>',
basePath: 'https://api-sandbox.transferzero.com/v1'
});
Or by setting the properties on an ApiClient instance:
const apiClient = new ApiClient();
apiClient.apiKey = '<key>';
apiClient.apiSecret = '<secret>';
apiClient.basePath = 'https://api-sandbox.transferzero.com/v1';
- Content-Type: application/json
- Accept: application/json