Skip to main content
GET
/
balance
/
payouts
/
{payoutId}
cURL
curl --request GET \
  --url https://api.xpaycheckout.com/balance/payouts/{payoutId} \
  --header 'Authorization: Basic <encoded-value>'
{
  "payoutId": "po_g8jKF4kdSdxlYcX2",
  "payoutStatementUrl": "<string>",
  "amount": 30000,
  "status": "SUCCESS"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

payoutId
string
required

Unique identifier of the payout

Response

Successful response with payout details

payoutId
string
required

Unique identifier of the payout

Example:

"po_g8jKF4kdSdxlYcX2"

payoutStatementUrl
string
required

Pre-signed URL to download payout statement CSV

amount
integer
required

Amount in cents (USD)

Example:

30000

status
enum<string>
required

Status of the payout

Available options:
INITIATED,
SUCCESS,
FAILED
Example:

"SUCCESS"

I