| Method | Path | Format | Authentication |
|---|
| GET | /api/v1.0/cardless-withdrawals/{account_id}/show/{id} | json | OAuth 2.0 with Access Token |
| Field | Value | Type | Mandatory | Length | Description | Example |
|---|
| X-PARTNER-ID | api_key | Alphanumeric | Mandatory | | API key obtained from the merchant dashboard. | b3ed7d4b-a96c-6c08-b3c7-12c3124242d9 |
| Accept | application/json | Alphabetic | Mandatory | | Specifies JSON as the expected response format. | application/json |
| Authorization | Bearer {bearerToken} | Alphanumeric | Mandatory | | Bearer token obtained from the get access token endpoint. | Bearer eyJ0eXAiOiJKV1{…} |
| Field | Type | Mandatory | Length | Description | Example |
|---|
| status | Numeric | Mandatory | 3 | HTTP Status Code | 200 |
| success | Boolean | Mandatory | 1 | 2xx is true. 4xx-500 is false. | true |
| data | Array Object | Conditional | | | |
| > id | Alphanumeric | Mandatory | | account ID | 4 |
| > reff_no | String | Mandatory | | Refference Number | 6601K3GDEQVPHBBP4GRYQADG0KXT |
| > status | String | Mandatory | | | open |
| > type | String | Mandatory | | | mpm-dynamic |
| > amount | Numeric | Mandatory | | | 50000 |
| > tip_amount | Numeric | Mandatory | | | 2000 |
| > total_amount | Numeric | Mandatory | | | 52000 |
| > qr_data | String | Mandatory | | | 00020101021226570015ID.SINGAPAY.WWW01110508050001902122183098102390303UMI51440014ID.CO.QRIS.WWW02157434441747371980303UMI520482115303360540550000550202560420005802ID5923PT Tarsius Trusty Tahir6006Bekasi6105620546253051017561188670703C0108286601K3GDEQVPHBBP4GRYQADG0KXT63045847 |
| > expired_at | String | Mandatory | | | 2025-08-30 12:00:00 |
| > created_at | String | Mandatory | | | 2025-08-25 17:47:47 |
Success: Here’s an example of a successful response.
{
"status": 200,
"success": true,
"data": [
{
"id": 4,
"reff_no": "6601K3GDEQVPHBBP4GRYQADG0KXT",
"status": "open",
"type": "mpm-dynamic",
"amount": 50000,
"tip_amount": 2000,
"total_amount": 52000,
"qr_data": "00020101021226570015ID.SINGAPAY.WWW01110508050001902122183098102390303UMI51440014ID.CO.QRIS.WWW02157434441747371980303UMI520482115303360540550000550202560420005802ID5923PT Tarsius Trusty Tahir6006Bekasi6105620546253051017561188670703C0108286601K3GDEQVPHBBP4GRYQADG0KXT63045847",
"expired_at": "2025-08-30 12:00:00",
"created_at": "2025-08-25 17:47:47"
},
{
"id": 3,
"reff_no": "6601K3GCF36VVQG8J8MSNJ1MWNB1",
"status": "open",
"type": "mpm-dynamic",
"amount": 50000,
"tip_amount": 2000,
"total_amount": 52000,
"qr_data": "00020101021226570015ID.SINGAPAY.WWW01110508050001902122183098102390303UMI51440014ID.CO.QRIS.WWW02157434441747371980303UMI520482115303360540550000550202560420005802ID5923PT Tarsius Trusty Tahir6006Bekasi6105620546253051017561178300703C0108286601K3GCF36VVQG8J8MSNJ1MWNB16304CDED",
"expired_at": "2025-08-30 12:00:00",
"created_at": "2025-08-25 17:30:30"
},
{
"id": 2,
"reff_no": "6601K3GBMHWMK2ZGNE9YGFWRAXW0",
"status": "open",
"type": "mpm-dynamic",
"amount": 100000,
"tip_amount": null,
"total_amount": 100000,
"qr_data": "00020101021226570015ID.SINGAPAY.WWW01110508050001902122183098102390303UMI51440014ID.CO.QRIS.WWW02157434441747371980303UMI52048211530336054061000005802ID5923PT Tarsius Trusty Tahir6006Bekasi6105620546253051017561169610703C0108286601K3GBMHWMK2ZGNE9YGFWRAXW06304E01B",
"expired_at": "2025-08-25 18:15:00",
"created_at": "2025-08-25 17:16:01"
},
{
"id": 1,
"reff_no": "6601K3GBK1A9JRTFQGT79B6GS0G8",
"status": "open",
"type": "mpm-dynamic",
"amount": 1000000,
"tip_amount": null,
"total_amount": 1000000,
"qr_data": "00020101021226570015ID.SINGAPAY.WWW01110508050001902122183098102390303UMI51440014ID.CO.QRIS.WWW02157434441747371980303UMI520482115303360540710000005802ID5923PT Tarsius Trusty Tahir6006Bekasi6105620546253051017561169110703C0108286601K3GBK1A9JRTFQGT79B6GS0G86304EAE3",
"expired_at": "2025-08-25 18:15:00",
"created_at": "2025-08-25 17:15:11"
}
],
"pagination": {
"count": 4,
"total": 4,
"perPage": 25,
"currentPage": 1,
"totalPages": 1,
"links": {}
}
}