Get Payout
Retrieve detailed payout information using the Bamboo Payouts API. Access final status, amounts, and beneficiary data by payout ID or merchant reference.
This operation retrieves the full payout information using either the internal payout ID or the merchant-defined reference. It is useful for reconciliation, custom error-handling flows, or to verify webhook delivery.
Always rely on webhook notifications to track final payout statuses. The Get endpoints should only be used in case of inconsistencies or for manual recovery flows.
Available Endpoints
| Identifier | When to Use | API Reference |
|---|---|---|
payoutId | When the Bamboo internal ID is available from the create response or webhook. | Get Payout by ID |
reference | When using the merchant-defined payout reference. | Get Payout by Reference |
Request
Each endpoint requires your private key in the header for authorization. No request body is required.
Response Parameters
Property | Format | Description |
|---|---|---|
|
| Internal identification of the payout. |
|
| Identifier defined by the merchant when the payout was created. |
|
| ISO code of the destination country, in the format |
|
| Date and time when the payout was created. |
|
| Date and time of the last update to the payout status. |
|
| Numeric code of the current payout status. Refer to this article for more details. |
|
| Description of the payout status. |
|
| Internal code representing the failure reason, if any. See possible values in the Reference Page. |
|
| Description of the error that caused the payout to fail. |
|
| Optional description or reason provided during payout creation. |
|
| Requested payout amount. |
|
| Currency code of the payout amount. |
|
| Amount in local currency, if conversion was applied. May be |
|
| Conversion rate used for the payout. May be |
|
| Recipient’s first name. |
|
| Recipient’s last name. |
|
| Company name, used only for business payouts. May be empty for individuals. |
|
| Recipient’s email address. |
|
| Recipient’s phone number. |
|
| City of the recipient. |
|
| Street address of the recipient. |
|
| Postal code of the recipient. |
|
| Identification number of the recipient. |
|
| Type of document. See Country considerations for more information. |
Response Example
{
"payoutId": 204307526961955232,
"reference": "ARI-904",
"isoCountry": "BG",
"created": "2025-07-17T18:45:12.4807443Z",
"lastUpdate": "2025-07-17T18:45:12.4808228Z",
"status": 7,
"statusDescription": "Held",
"errorCode": "null",
"errorDescription": "null",
"amount": {
"value": 5.08,
"isoCurrency": "USD"
},
"localAmount": null,
"exchangeRate": null,
"payee": {
"firstName": "Ari",
"lastName": "Carba",
"email": "",
"phone": "099999999",
"location": {
"city": "city",
"address": "address",
"zipCode": "zip"
},
"document": {
"number": "ABC123456789",
"type": "BULSTAT"
}
},
"description": "string"
} Next steps
Get by ID
Explore real response examples and test with your staging credentials.
Get by Reference
Retrieve a payout using your merchant-defined reference.
Webhook Notifications
Learn how to receive final status updates automatically.
Payout Error Codes
Understand common reasons for declined or rejected payouts.
Updated 22 days ago
