Retrieving a Payout
Look up APM payout status and details on demand
1 min readUpdated Aug 6, 2025
You can retrieve the status and full details of an APM payout on demand. Use this when a webhook was not received, or when you need full payout details for reconciliation or support.
#Status vs Info
| Endpoint | Returns |
|---|---|
GET /payouts/apm/status/{id} | Status string only (lightweight) |
GET /payouts/apm/info/{id} | Full payout details (same structure as webhook payload) |
#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
- API Reference: GET /api/v1/payouts/apm/status/{id} — Status-only endpoint
- APM Payout Flow — End-to-end payout flow
Was this helpful?