Skip to content
API DocsDocs

Retrieving a Payout

Check an APM payout's status and retrieve full details — including declineCode on failure

1 min readUpdated Aug 6, 2025

The info endpoint returns an APM payout's current status together with full transaction details — same payload as the webhook callback. Use it when a webhook was not received, or when you need full payout details for reconciliation or support.

Always use /info — not /status

The /info/{id} endpoint is the only endpoint that returns declineCode. If a payout is FAILED, /info/{id} tells you why; a status-only response does not.

#Key Response Fields

FieldDescription
transactionIdUnique payout transaction identifier
requestIdYour original request ID
transactionStatusCurrent status (PROCESSING, SUCCEED, FAILED)
declineCode / declineSubReasonSet on failure
apmRequestPayloadEcho of your original apmPayload (method, recipient fields)
apmResponseDataProvider-specific response (providerTransactionId, etc.)
createdAtISO 8601 creation timestamp
Was this helpful?