Skip to main content

Get payout

Quick Reference

WhatRetrieve a single payout
WhyCheck the current status and details of a payout you created
Reading Time3 min
DifficultyBeginner
PrerequisitesAuthentication → A payout_uuid and the funding wallet_uuid
GET/api/v1/bank/wallet/payout/{payout_uuid}/{wallet_uuid}/Bearer TokenGet a payout scoped to a wallet

The payout is scoped to its funding wallet: both payout_uuid and wallet_uuid go in the URL path. If the payout does not belong to the wallet, the API returns errors.wallet.payout_not_found.


Path parameters

FieldTypeRequiredDescription
payout_uuidstring (UUID)YesPayout to retrieve
wallet_uuidstring (UUID)YesWallet that funded the payout

Request headers

HeaderValueRequired
AuthorizationBearer {A55_ACCESS_TOKEN}Yes

Response fields

Returns the same payout object as Create payout.

FieldTypeDescription
payout_uuidstringInternal payout identifier
external_idstringProvider's payout id
statusstringCurrent payout status (pending, issued, realized, returned, canceled, error, expired)
type_payoutstringPayout rail used
amountnumber (float)Payout amount
feenumber (float)Provider fee
currencystringISO 4217 currency
descriptionstringPayout description
beneficiary_namestringBeneficiary name
transaction_referencestringIdempotency key used
submitted_datestringDate sent to the provider
confirmed_datestringDate confirmed
payment_codestringCash pickup code (cash payouts only)
authorization_codestringProvider authorization code, when available
destinationobjectEcho of the destination data
messagearrayProvider/processing messages
createdstringISO 8601 creation timestamp
updatedstringISO 8601 last update timestamp

Error responses

StatusCodeDescription
401unauthorizedInvalid or expired Bearer token
404errors.wallet.not_foundWallet not found
404errors.wallet.payout_not_foundPayout not found, or it does not belong to the wallet

Code examples

curl -s "https://sandbox.api.a55.tech/api/v1/bank/wallet/payout/9b1f0c88-3a3c-4f2f-9d6e-1f0a2d4e88c1/f47ac10b-58cc-4372-a567-0e02b2c3d479/" \
-H "Authorization: Bearer $A55_ACCESS_TOKEN"