List payouts
GET /v1/partners/payoutsYour own payouts, newest first.
| Permission | read-gateway |
| Answers | 200 |
Request
Section titled “Request”GET /v1/partners/payouts?page=1&limit=50&status=succeeded&from=2026-09-01&to=2026-09-30Authorization: Bearer sk_live_xxxxxxxxxxxxxxxxx-partner-signature: <hmac-sha256 of the raw body, hex>| Query | Notes |
|---|---|
page | 1-based. Defaults to 1 |
limit | Defaults to 50, capped at 100 |
status | pending, succeeded, or failed |
external_ref | Your own reference, matched exactly |
from / to | Inclusive. A bare YYYY-MM-DD covers the whole day |
Same paging and period rules as List payments.
Response
Section titled “Response”{ "data": { "items": [ { "id": "8a21…", "reference": "PGW-8A21C4…", "status": "succeeded", "is_final": true, "amount": "500000.0000", "fee": "5000.0000", "net_amount": "495000.0000", "currency": "IDR", "bank_code": "BRI", "created_at": "2026-09-03T07:10:00.000Z", "finalized_at": "2026-09-03T07:12:00.000Z" } ], "page": 1, "limit": 50, "total": 18 }, "request_id": "req_…"}Items are the same shape as the detail endpoint.
- List payments — the money-in side