Skip to main content
curl https://api.orqex.com/v1/payouts/po_abc123 \
  -H "Authorization: Bearer sk_live_xxx"
Returns the full payout object. See Create a payout for the complete response shape.

Polling for final status

If you cannot receive webhooks, poll the retrieve endpoint until status reaches completed or failed. Use an exponential back-off and stop after a reasonable timeout.
PHP (SDK)
$payout = $orqex->payouts()->retrieve('po_abc123');

while (in_array($payout->status, ['pending', 'processing'])) {
    sleep(5);
    $payout = $orqex->payouts()->retrieve('po_abc123');
}
Webhooks are strongly preferred over polling. See Webhooks.