2.2 Get PayOut Status
GET /api/v1/payouts/{external_id}
- Path
- Query
| Parameter | Type | Required | Description |
|---|---|---|---|
| external_id | string | Yes | PayOut identifier provided at creation. |
| Parameter | Type | Required | Description |
|---|---|---|---|
| shop_code | string | No | Shop code. If omitted, lookup uses the default active shop. |
Example request
GET /api/v1/payouts/POUT-VND-EPT-001?shop_code=your_ept_vnd_shop
Response
Fields with null values are omitted from the response.
{
"id": 12346,
"external_id": "POUT-VND-EPT-001",
"shop_code": "your_ept_vnd_shop",
"status": "pending",
"amount": "250000",
"currency": "VND",
"card_number": "0123456789",
"updated_at": "2026-09-21T10:00:00+00:00"
}