Applies to: Payouts API
Learn how to view details about a specific payout.
The GetPayout endpoint provides details about a specific payout. You need to pass the payout ID as an argument to this endpoint. To call this endpoint, set PAYOUTS_READ
for the OAuth scope.
If you don't specify a location, the main or default location is used.
Get payout
The following is an example response:
{
"payout": {
"id": "po_070431e4-e351-11eb-a8bb-02420a140009",
"status": "SENT",
"location_id": "{LOCATION_ID}",
"created_at": "2021-07-12T20:37:51Z",
"updated_at": "2021-07-12T20:37:51Z",
"amount_money": {
"amount": 457,
"currency_code": "EUR"
},
"destination": {
"type": "BANK_ACCOUNT",
"id": "bact:cgvL1yv43VFjexample"
},
"version": 1,
"type": "BATCH",
"end_to_end_id": "L2100000000"
}
}