Outbound Payment
Outbound Payments represent payments sent from creditors.
GoCardless will notify you via a webhook when the status of the outbound payment changes.
Rate limiting
Two rate limits apply to the Outbound Payments APIs:
- All POST Outbound Payment endpoints (create, withdraw, approve, cancel and etc.) share a single rate-limit group of 300 requests per minute. As initiating a payment typically requires two API calls (one to create the payment and one to approve it), this allows you to add approximately 150 outbound payments per minute.
- All remaining Outbound Payment endpoints are limited to 500 requests per minute.
Create an outbound payment#
/outbound_paymentsRequest Body
outbound_paymentsobject7 properties
amountinteger
Amount, in the lowest denomination for the currency (e.g. pence in GBP, cents in EUR).
schemestring
Bank payment scheme to process the outbound payment. Currently only "faster_payments" (GBP) is supported.
faster_paymentsdescriptionstring
A human-readable description of the outbound payment
execution_datestring
A future date on which the outbound payment should be sent. If not specified, the payment will be sent as soon as possible.
metadataobject
Key-value store of custom data. Up to 3 keys are permitted, with key names up to 50 characters and values up to 500 characters.
referencestring
An optional reference that will appear on your customer's bank statement.
The character limit for this reference is dependent on the scheme.
Faster Payments - 18 characters, including: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 &-./"
linksobject
3 properties
creditorstring
ID of the creditor who sends the outbound payment.
recipient_bank_accountstring
ID of the customer bank account which receives the outbound payment.
outbound_payment_importstring
ID of the outbound payment import that created this outbound payment.
Response 201
Resource created successfully
outbound_paymentsobject13 properties
idstring
Unique identifier of the outbound payment.
created_atstring
Fixed timestamp, recording when the outbound payment was created.
statusstring
One of:
verifying: The payment has been created and the verification process has begun.pending_approval: The payment is awaiting approval.scheduled: The payment has passed verification & approval, but processing has not yet begun.executing: The execution date has arrived and the payment has been placed in queue for processing.executed: The payment has been accepted by the scheme and is now on its way to the recipient.cancelled: The payment has been cancelled or was not approved on time.failed: The payment was not sent, usually due to an error while or after executing.
verifyingpending_approvalscheduledexecutingexecutedcancelledfailedamountinteger
Amount, in the lowest denomination for the currency (e.g. pence in GBP, cents in EUR).
schemestring
Bank payment scheme to process the outbound payment. Currently only "faster_payments" (GBP) is supported.
faster_paymentscurrencystring
ISO 4217 currency. Currently only "GBP" is supported.
GBPexecution_datestring
A future date on which the outbound payment should be sent. If not specified, the payment will be sent as soon as possible.
descriptionstring
A human-readable description of the outbound payment
referencestring
An optional reference that will appear on your customer's bank statement.
The character limit for this reference is dependent on the scheme.
Faster Payments - 18 characters, including: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 &-./"
is_withdrawalboolean
Indicates whether the outbound payment is a withdrawal to your verified business bank account.
linksobject
4 properties
creditorstring
ID of the creditor who sends the outbound payment.
customerstring
ID of the customer that receives this outbound payment
recipient_bank_accountstring
ID of the customer bank account which receives the outbound payment.
outbound_payment_importstring
ID of the outbound payment import that created this outbound payment.
verificationsobject
Contains details of the verifications performed for the outbound payment
1 properties
recipient_bank_account_holder_verificationobject
Checks if the recipient owns the provided bank account
3 properties
typestring
Type of the verification that has been performed eg. Confirmation of Payee
confirmation_of_payeeresultstring
Result of the verification, could be one of
full_match: The verification has confirmed that the account name exactly matches the details provided.partial_match: The verification has confirmed that the account name is similar but does not match to the details provided.no_match: The verification concludes the provided name does not match the account details.unable_to_match: The verification could not be performed due to recipient bank issues or technical issues
full_matchpartial_matchno_matchunable_to_matchactual_account_namestring
The actual account name returned by the recipient's bank, populated only in the case of a partial match.
metadataobject
Key-value store of custom data. Up to 3 keys are permitted, with key names up to 50 characters and values up to 500 characters.
Errors 400401404422500
Bad Request
Unauthorised
Not found
Validation Error
Internal Error
Error Body
codeintegerdocumentation_urlstringerrorsarray2 properties
reasonstringmessagestringmessagestringrequest_idstringtypestringmetadataobjectlinksobjectList outbound payments#
/outbound_paymentsReturns a cursor-paginated list of outbound payments.
Response 200
Successful response
outbound_paymentsarray13 properties
idstring
Unique identifier of the outbound payment.
created_atstring
Fixed timestamp, recording when the outbound payment was created.
statusstring
One of:
verifying: The payment has been created and the verification process has begun.pending_approval: The payment is awaiting approval.scheduled: The payment has passed verification & approval, but processing has not yet begun.executing: The execution date has arrived and the payment has been placed in queue for processing.executed: The payment has been accepted by the scheme and is now on its way to the recipient.cancelled: The payment has been cancelled or was not approved on time.failed: The payment was not sent, usually due to an error while or after executing.
verifyingpending_approvalscheduledexecutingexecutedcancelledfailedamountinteger
Amount, in the lowest denomination for the currency (e.g. pence in GBP, cents in EUR).
schemestring
Bank payment scheme to process the outbound payment. Currently only "faster_payments" (GBP) is supported.
faster_paymentscurrencystring
ISO 4217 currency. Currently only "GBP" is supported.
GBPexecution_datestring
A future date on which the outbound payment should be sent. If not specified, the payment will be sent as soon as possible.
descriptionstring
A human-readable description of the outbound payment
referencestring
An optional reference that will appear on your customer's bank statement.
The character limit for this reference is dependent on the scheme.
Faster Payments - 18 characters, including: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 &-./"
is_withdrawalboolean
Indicates whether the outbound payment is a withdrawal to your verified business bank account.
linksobject
4 properties
creditorstring
ID of the creditor who sends the outbound payment.
customerstring
ID of the customer that receives this outbound payment
recipient_bank_accountstring
ID of the customer bank account which receives the outbound payment.
outbound_payment_importstring
ID of the outbound payment import that created this outbound payment.
verificationsobject
Contains details of the verifications performed for the outbound payment
1 properties
recipient_bank_account_holder_verificationobject
Checks if the recipient owns the provided bank account
3 properties
typestring
Type of the verification that has been performed eg. Confirmation of Payee
confirmation_of_payeeresultstring
Result of the verification, could be one of
full_match: The verification has confirmed that the account name exactly matches the details provided.partial_match: The verification has confirmed that the account name is similar but does not match to the details provided.no_match: The verification concludes the provided name does not match the account details.unable_to_match: The verification could not be performed due to recipient bank issues or technical issues
full_matchpartial_matchno_matchunable_to_matchactual_account_namestring
The actual account name returned by the recipient's bank, populated only in the case of a partial match.
metadataobject
Key-value store of custom data. Up to 3 keys are permitted, with key names up to 50 characters and values up to 500 characters.
metaobject2 properties
limitintegercursorsobject
2 properties
beforestring
Cursor pointing to the end of the desired set.
afterstring
Cursor pointing to the start of the desired set.
Errors 400401404422500
Bad Request
Unauthorised
Not found
Validation Error
Internal Error
Error Body
codeintegerdocumentation_urlstringerrorsarray2 properties
reasonstringmessagestringmessagestringrequest_idstringtypestringmetadataobjectlinksobjectCreate a withdrawal outbound payment#
/outbound_payments/withdrawalCreates an outbound payment to your verified business bank account as the recipient.
Request Body
outbound_paymentsobject7 properties
amountinteger
Amount, in the lowest denomination for the currency (e.g. pence in GBP, cents in EUR).
schemestring
Bank payment scheme to process the outbound payment. Currently only "faster_payments" (GBP) is supported.
faster_paymentsdescriptionstring
A human-readable description of the outbound payment
execution_datestring
A future date on which the outbound payment should be sent. If not specified, the payment will be sent as soon as possible.
metadataobject
Key-value store of custom data. Up to 3 keys are permitted, with key names up to 50 characters and values up to 500 characters.
referencestring
An optional reference that will appear on your customer's bank statement.
The character limit for this reference is dependent on the scheme.
Faster Payments - 18 characters, including: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 &-./"
linksobject
1 properties
creditorstring
ID of the creditor who sends the outbound payment.
Response 201
Resource created successfully
outbound_paymentsobject13 properties
idstring
Unique identifier of the outbound payment.
created_atstring
Fixed timestamp, recording when the outbound payment was created.
statusstring
One of:
verifying: The payment has been created and the verification process has begun.pending_approval: The payment is awaiting approval.scheduled: The payment has passed verification & approval, but processing has not yet begun.executing: The execution date has arrived and the payment has been placed in queue for processing.executed: The payment has been accepted by the scheme and is now on its way to the recipient.cancelled: The payment has been cancelled or was not approved on time.failed: The payment was not sent, usually due to an error while or after executing.
verifyingpending_approvalscheduledexecutingexecutedcancelledfailedamountinteger
Amount, in the lowest denomination for the currency (e.g. pence in GBP, cents in EUR).
schemestring
Bank payment scheme to process the outbound payment. Currently only "faster_payments" (GBP) is supported.
faster_paymentscurrencystring
ISO 4217 currency. Currently only "GBP" is supported.
GBPexecution_datestring
A future date on which the outbound payment should be sent. If not specified, the payment will be sent as soon as possible.
descriptionstring
A human-readable description of the outbound payment
referencestring
An optional reference that will appear on your customer's bank statement.
The character limit for this reference is dependent on the scheme.
Faster Payments - 18 characters, including: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 &-./"
is_withdrawalboolean
Indicates whether the outbound payment is a withdrawal to your verified business bank account.
linksobject
4 properties
creditorstring
ID of the creditor who sends the outbound payment.
customerstring
ID of the customer that receives this outbound payment
recipient_bank_accountstring
ID of the customer bank account which receives the outbound payment.
outbound_payment_importstring
ID of the outbound payment import that created this outbound payment.
verificationsobject
Contains details of the verifications performed for the outbound payment
1 properties
recipient_bank_account_holder_verificationobject
Checks if the recipient owns the provided bank account
3 properties
typestring
Type of the verification that has been performed eg. Confirmation of Payee
confirmation_of_payeeresultstring
Result of the verification, could be one of
full_match: The verification has confirmed that the account name exactly matches the details provided.partial_match: The verification has confirmed that the account name is similar but does not match to the details provided.no_match: The verification concludes the provided name does not match the account details.unable_to_match: The verification could not be performed due to recipient bank issues or technical issues
full_matchpartial_matchno_matchunable_to_matchactual_account_namestring
The actual account name returned by the recipient's bank, populated only in the case of a partial match.
metadataobject
Key-value store of custom data. Up to 3 keys are permitted, with key names up to 50 characters and values up to 500 characters.
Errors 400401404422500
Bad Request
Unauthorised
Not found
Validation Error
Internal Error
Error Body
codeintegerdocumentation_urlstringerrorsarray2 properties
reasonstringmessagestringmessagestringrequest_idstringtypestringmetadataobjectlinksobjectCancel an outbound payment#
/outbound_payments/{outbound_payment_id}/actions/cancelCancels an outbound payment. Only outbound payments with either verifying, pending_approval, or scheduled status can be cancelled.
Once an outbound payment is executing, the money moving process has begun and cannot be reversed.
Path Parameters
| Name | Type | Description |
|---|---|---|
outbound_payment_idrequired | string | The outbound payment id |
Request Body
outbound_paymentsobject1 properties
metadataobject
Key-value store of custom data. Up to 3 keys are permitted, with key names up to 50 characters and values up to 500 characters.
Response 200
Action completed successfully
outbound_paymentsobject13 properties
idstring
Unique identifier of the outbound payment.
created_atstring
Fixed timestamp, recording when the outbound payment was created.
statusstring
One of:
verifying: The payment has been created and the verification process has begun.pending_approval: The payment is awaiting approval.scheduled: The payment has passed verification & approval, but processing has not yet begun.executing: The execution date has arrived and the payment has been placed in queue for processing.executed: The payment has been accepted by the scheme and is now on its way to the recipient.cancelled: The payment has been cancelled or was not approved on time.failed: The payment was not sent, usually due to an error while or after executing.
verifyingpending_approvalscheduledexecutingexecutedcancelledfailedamountinteger
Amount, in the lowest denomination for the currency (e.g. pence in GBP, cents in EUR).
schemestring
Bank payment scheme to process the outbound payment. Currently only "faster_payments" (GBP) is supported.
faster_paymentscurrencystring
ISO 4217 currency. Currently only "GBP" is supported.
GBPexecution_datestring
A future date on which the outbound payment should be sent. If not specified, the payment will be sent as soon as possible.
descriptionstring
A human-readable description of the outbound payment
referencestring
An optional reference that will appear on your customer's bank statement.
The character limit for this reference is dependent on the scheme.
Faster Payments - 18 characters, including: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 &-./"
is_withdrawalboolean
Indicates whether the outbound payment is a withdrawal to your verified business bank account.
linksobject
4 properties
creditorstring
ID of the creditor who sends the outbound payment.
customerstring
ID of the customer that receives this outbound payment
recipient_bank_accountstring
ID of the customer bank account which receives the outbound payment.
outbound_payment_importstring
ID of the outbound payment import that created this outbound payment.
verificationsobject
Contains details of the verifications performed for the outbound payment
1 properties
recipient_bank_account_holder_verificationobject
Checks if the recipient owns the provided bank account
3 properties
typestring
Type of the verification that has been performed eg. Confirmation of Payee
confirmation_of_payeeresultstring
Result of the verification, could be one of
full_match: The verification has confirmed that the account name exactly matches the details provided.partial_match: The verification has confirmed that the account name is similar but does not match to the details provided.no_match: The verification concludes the provided name does not match the account details.unable_to_match: The verification could not be performed due to recipient bank issues or technical issues
full_matchpartial_matchno_matchunable_to_matchactual_account_namestring
The actual account name returned by the recipient's bank, populated only in the case of a partial match.
metadataobject
Key-value store of custom data. Up to 3 keys are permitted, with key names up to 50 characters and values up to 500 characters.
Errors 400401404422500
Bad Request
Unauthorised
Not found
Validation Error
Internal Error
Error Body
codeintegerdocumentation_urlstringerrorsarray2 properties
reasonstringmessagestringmessagestringrequest_idstringtypestringmetadataobjectlinksobjectApprove an outbound payment#
/outbound_payments/{outbound_payment_id}/actions/approveApproves an outbound payment. Only outbound payments with the "pending_approval" status can be approved.
Path Parameters
| Name | Type | Description |
|---|---|---|
outbound_payment_idrequired | string | The outbound payment id |
Request Body
outbound_paymentsobject0 properties
Response 200
Action completed successfully
outbound_paymentsobject13 properties
idstring
Unique identifier of the outbound payment.
created_atstring
Fixed timestamp, recording when the outbound payment was created.
statusstring
One of:
verifying: The payment has been created and the verification process has begun.pending_approval: The payment is awaiting approval.scheduled: The payment has passed verification & approval, but processing has not yet begun.executing: The execution date has arrived and the payment has been placed in queue for processing.executed: The payment has been accepted by the scheme and is now on its way to the recipient.cancelled: The payment has been cancelled or was not approved on time.failed: The payment was not sent, usually due to an error while or after executing.
verifyingpending_approvalscheduledexecutingexecutedcancelledfailedamountinteger
Amount, in the lowest denomination for the currency (e.g. pence in GBP, cents in EUR).
schemestring
Bank payment scheme to process the outbound payment. Currently only "faster_payments" (GBP) is supported.
faster_paymentscurrencystring
ISO 4217 currency. Currently only "GBP" is supported.
GBPexecution_datestring
A future date on which the outbound payment should be sent. If not specified, the payment will be sent as soon as possible.
descriptionstring
A human-readable description of the outbound payment
referencestring
An optional reference that will appear on your customer's bank statement.
The character limit for this reference is dependent on the scheme.
Faster Payments - 18 characters, including: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 &-./"
is_withdrawalboolean
Indicates whether the outbound payment is a withdrawal to your verified business bank account.
linksobject
4 properties
creditorstring
ID of the creditor who sends the outbound payment.
customerstring
ID of the customer that receives this outbound payment
recipient_bank_accountstring
ID of the customer bank account which receives the outbound payment.
outbound_payment_importstring
ID of the outbound payment import that created this outbound payment.
verificationsobject
Contains details of the verifications performed for the outbound payment
1 properties
recipient_bank_account_holder_verificationobject
Checks if the recipient owns the provided bank account
3 properties
typestring
Type of the verification that has been performed eg. Confirmation of Payee
confirmation_of_payeeresultstring
Result of the verification, could be one of
full_match: The verification has confirmed that the account name exactly matches the details provided.partial_match: The verification has confirmed that the account name is similar but does not match to the details provided.no_match: The verification concludes the provided name does not match the account details.unable_to_match: The verification could not be performed due to recipient bank issues or technical issues
full_matchpartial_matchno_matchunable_to_matchactual_account_namestring
The actual account name returned by the recipient's bank, populated only in the case of a partial match.
metadataobject
Key-value store of custom data. Up to 3 keys are permitted, with key names up to 50 characters and values up to 500 characters.
Errors 400401404422500
Bad Request
Unauthorised
Not found
Validation Error
Internal Error
Error Body
codeintegerdocumentation_urlstringerrorsarray2 properties
reasonstringmessagestringmessagestringrequest_idstringtypestringmetadataobjectlinksobjectGet an outbound payment#
/outbound_payments/{outbound_payment_id}Fetches an outbound_payment by ID
Path Parameters
| Name | Type | Description |
|---|---|---|
outbound_payment_idrequired | string | The outbound payment id |
Response 200
Successful response
outbound_paymentsobject13 properties
idstring
Unique identifier of the outbound payment.
created_atstring
Fixed timestamp, recording when the outbound payment was created.
statusstring
One of:
verifying: The payment has been created and the verification process has begun.pending_approval: The payment is awaiting approval.scheduled: The payment has passed verification & approval, but processing has not yet begun.executing: The execution date has arrived and the payment has been placed in queue for processing.executed: The payment has been accepted by the scheme and is now on its way to the recipient.cancelled: The payment has been cancelled or was not approved on time.failed: The payment was not sent, usually due to an error while or after executing.
verifyingpending_approvalscheduledexecutingexecutedcancelledfailedamountinteger
Amount, in the lowest denomination for the currency (e.g. pence in GBP, cents in EUR).
schemestring
Bank payment scheme to process the outbound payment. Currently only "faster_payments" (GBP) is supported.
faster_paymentscurrencystring
ISO 4217 currency. Currently only "GBP" is supported.
GBPexecution_datestring
A future date on which the outbound payment should be sent. If not specified, the payment will be sent as soon as possible.
descriptionstring
A human-readable description of the outbound payment
referencestring
An optional reference that will appear on your customer's bank statement.
The character limit for this reference is dependent on the scheme.
Faster Payments - 18 characters, including: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 &-./"
is_withdrawalboolean
Indicates whether the outbound payment is a withdrawal to your verified business bank account.
linksobject
4 properties
creditorstring
ID of the creditor who sends the outbound payment.
customerstring
ID of the customer that receives this outbound payment
recipient_bank_accountstring
ID of the customer bank account which receives the outbound payment.
outbound_payment_importstring
ID of the outbound payment import that created this outbound payment.
verificationsobject
Contains details of the verifications performed for the outbound payment
1 properties
recipient_bank_account_holder_verificationobject
Checks if the recipient owns the provided bank account
3 properties
typestring
Type of the verification that has been performed eg. Confirmation of Payee
confirmation_of_payeeresultstring
Result of the verification, could be one of
full_match: The verification has confirmed that the account name exactly matches the details provided.partial_match: The verification has confirmed that the account name is similar but does not match to the details provided.no_match: The verification concludes the provided name does not match the account details.unable_to_match: The verification could not be performed due to recipient bank issues or technical issues
full_matchpartial_matchno_matchunable_to_matchactual_account_namestring
The actual account name returned by the recipient's bank, populated only in the case of a partial match.
metadataobject
Key-value store of custom data. Up to 3 keys are permitted, with key names up to 50 characters and values up to 500 characters.
Errors 400401404422500
Bad Request
Unauthorised
Not found
Validation Error
Internal Error
Error Body
codeintegerdocumentation_urlstringerrorsarray2 properties
reasonstringmessagestringmessagestringrequest_idstringtypestringmetadataobjectlinksobjectUpdate an outbound payment#
/outbound_payments/{outbound_payment_id}Updates an outbound payment object. This accepts only the metadata parameter.
Path Parameters
| Name | Type | Description |
|---|---|---|
outbound_payment_idrequired | string | The outbound payment id |
Request Body
outbound_paymentsobject1 properties
metadataobject
Key-value store of custom data. Up to 3 keys are permitted, with key names up to 50 characters and values up to 500 characters.
Response 200
Successful response
outbound_paymentsobject13 properties
idstring
Unique identifier of the outbound payment.
created_atstring
Fixed timestamp, recording when the outbound payment was created.
statusstring
One of:
verifying: The payment has been created and the verification process has begun.pending_approval: The payment is awaiting approval.scheduled: The payment has passed verification & approval, but processing has not yet begun.executing: The execution date has arrived and the payment has been placed in queue for processing.executed: The payment has been accepted by the scheme and is now on its way to the recipient.cancelled: The payment has been cancelled or was not approved on time.failed: The payment was not sent, usually due to an error while or after executing.
verifyingpending_approvalscheduledexecutingexecutedcancelledfailedamountinteger
Amount, in the lowest denomination for the currency (e.g. pence in GBP, cents in EUR).
schemestring
Bank payment scheme to process the outbound payment. Currently only "faster_payments" (GBP) is supported.
faster_paymentscurrencystring
ISO 4217 currency. Currently only "GBP" is supported.
GBPexecution_datestring
A future date on which the outbound payment should be sent. If not specified, the payment will be sent as soon as possible.
descriptionstring
A human-readable description of the outbound payment
referencestring
An optional reference that will appear on your customer's bank statement.
The character limit for this reference is dependent on the scheme.
Faster Payments - 18 characters, including: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 &-./"
is_withdrawalboolean
Indicates whether the outbound payment is a withdrawal to your verified business bank account.
linksobject
4 properties
creditorstring
ID of the creditor who sends the outbound payment.
customerstring
ID of the customer that receives this outbound payment
recipient_bank_accountstring
ID of the customer bank account which receives the outbound payment.
outbound_payment_importstring
ID of the outbound payment import that created this outbound payment.
verificationsobject
Contains details of the verifications performed for the outbound payment
1 properties
recipient_bank_account_holder_verificationobject
Checks if the recipient owns the provided bank account
3 properties
typestring
Type of the verification that has been performed eg. Confirmation of Payee
confirmation_of_payeeresultstring
Result of the verification, could be one of
full_match: The verification has confirmed that the account name exactly matches the details provided.partial_match: The verification has confirmed that the account name is similar but does not match to the details provided.no_match: The verification concludes the provided name does not match the account details.unable_to_match: The verification could not be performed due to recipient bank issues or technical issues
full_matchpartial_matchno_matchunable_to_matchactual_account_namestring
The actual account name returned by the recipient's bank, populated only in the case of a partial match.
metadataobject
Key-value store of custom data. Up to 3 keys are permitted, with key names up to 50 characters and values up to 500 characters.
Errors 400401404422500
Bad Request
Unauthorised
Not found
Validation Error
Internal Error
Error Body
codeintegerdocumentation_urlstringerrorsarray2 properties
reasonstringmessagestringmessagestringrequest_idstringtypestringmetadataobjectlinksobjectOutbound payment statistics#
/outbound_payments/statsRetrieve aggregate statistics on outbound payments.
Response 200
Successful response
outbound_paymentsobject6 properties
pending_approval_amountinteger
The amount sum of outbound payments with status pending_approval.
pending_approval_countinteger
The number of outbound payments with status pending_approval.
scheduled_amountinteger
The amount sum of outbound payments with status scheduled.
scheduled_countinteger
The number of outbound payments with status scheduled.
executing_amountinteger
The amount sum of outbound payments with status executing.
executing_countinteger
The number of outbound payments with status executing.
Errors 400401404422500
Bad Request
Unauthorised
Not found
Validation Error
Internal Error
Error Body
codeintegerdocumentation_urlstringerrorsarray2 properties
reasonstringmessagestringmessagestringrequest_idstringtypestringmetadataobjectlinksobject