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
| Field | Description |
|---|---|
transactionId | Unique payout transaction identifier |
requestId | Your original request ID |
transactionStatus | Current status (PROCESSING, SUCCEED, FAILED) |
declineCode / declineSubReason | Set on failure |
apmRequestPayload | Echo of your original apmPayload (method, recipient fields) |
apmResponseData | Provider-specific response (providerTransactionId, etc.) |
createdAt | ISO 8601 creation timestamp |
#Related
- API Reference: GET /api/v1/payouts/apm/info/{id} — Full endpoint spec, Try It
- APM Payout Flow — End-to-end payout flow
Was this helpful?