
Payment Link
This feature is used to find out information regarding list of payment in an accounts.
| Method | Path | Format | Authentication |
|---|---|---|---|
| GET | /api/v1.0/payment-link-manage/{account_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 | - | Array containing payment link objects. | - |
| > id | Numeric | Mandatory | - | Internal ID of the Payment Link. | 103 |
| > reff_no | Alphanumeric | Mandatory | - | Reference number of the Payment Link. | PL2025102113590968f72f3df34e5 |
| > title | Alphanumeric | Mandatory | - | Title of the payment link. | tes |
| > payment_url | String | Mandatory | - | URL to access the payment link. | http://localhost:3000/b2b/PL2025102113590968f72f3df34e5 |
| > status | Alphabetic | Mandatory | - | Status of the payment link. Values are open or closed. | open |
| > status_computed | Alphabetic | Mandatory | - | The computed status of the payment link. Values are open, closed, or expired. | open |
| > required_customer_detail | Boolean | Mandatory | 1 | Indicates if customer details are required. | true |
| > max_usage | Numeric | Mandatory | - | Maximum usage count for the payment link. | 1000 |
| > current_usage | Numeric | Mandatory | - | Current usage count of the payment link. | 2 |
| > expired_at | Datetime/Null | Conditional | - | Expiration date of the payment link (ISO 8601 format or null if none). | 2025-10-17T14:54:40+07:00 |
| > is_expired | Boolean | Mandatory | 1 | Indicates if the payment link has expired. | false |
| > total_amount | Numeric | Mandatory | - | Total amount of the payment link. | 20000.00 |
| > items | Array Object/Null | Conditional | - | List of items included in the payment. It is null if there are no items. | - |
| >> name | Alphabetic | Mandatory | - | Name of the item. | tes |
| >> quantity | Numeric | Mandatory | - | Quantity of the item. | 1 |
| >> unit_price | Numeric | Mandatory | - | Price per unit of the item. | 20000 |
| >> subtotal | Numeric | Mandatory | - | Subtotal for the item (quantity * unit_price). | 20000 |
| > whitelisted_payment_method | Array String/Null | Conditional | - | List of allowed (whitelisted) payment method codes. It is null if all methods are allowed. | [ “VA_BRI”, “QRIS” ] |
| > redirect_url | String/Null | Conditional | - | URL to redirect the customer after payment success or expiry. It is null if not set. | https://example.com/thank-you |
| > payment_date | Datetime/Null | Conditional | - | Date/time of the last successful payment (ISO 8601 format or null). | 2025-10-21T13:59:40+07:00 |
| > created_at | Datetime | Mandatory | - | Creation date/time of the payment link (ISO 8601 format). | 2025-10-21T13:59:40+07:00 |
| > updated_at | Datetime | Mandatory | - | Last update date/time of the payment link (ISO 8601 format). | 2025-10-21T15:16:05+07:00 |
| > account | Object | Mandatory | - | Account information associated with the payment link. | - |
| >> id | Alphanumeric | Mandatory | - | Account ID. | 01K7P073Q8RE2A9PQT8Q7MXPN4 |
| >> name | Alphabetic | Mandatory | - | Account Name. | Moh. Zulkifli Katili |
| String | Mandatory | - | Account email address. | tes@gmail.com | |
| >> phone | Numeric | Mandatory | - | Account phone number. | 08123993201 |
| >> status | Alphabetic | Mandatory | - | Account Status. | active |
| pagination | Object | Conditional | - | Pagination metadata. | - |
| > count | Numeric | Mandatory | - | The number of data items returned in the current response. | 25 |
| > total | Numeric | Mandatory | - | The total number of data items across all pages. | 103 |
| > perPage | Numeric | Mandatory | - | The number of data items per page. | 25 |
| > currentPage | Numeric | Mandatory | - | The current page number being viewed. | 1 |
| > totalPages | Numeric | Mandatory | - | The total number of available pages. | 5 |
| > links | Object | Mandatory | - | Links for navigating between pages. | - |
| >> next | String/Null | Conditional | - | Link to the next page of results. It is null if on the last page. | https://pg-b2b.singapay.test/api/v1.0/payment-link-manage/01K7P073Q8RE2A9PQT8Q7MXPN4?page=2 |
Success: Here’s an example of a successful response.
{
"status": 200,
"success": true,
"data": [
{
"id": 103,
"reff_no": "PL2025102113590968f72f3df34e5",
"title": "tes",
"payment_url": "http://localhost:3000/b2b/PL2025102113590968f72f3df34e5",
"status": "open",
"status_computed": "open",
"required_customer_detail": true,
"max_usage": 1000,
"current_usage": 2,
"expired_at": null,
"is_expired": false,
"total_amount": "20000.00",
"items": [
{
"name": "tes",
"quantity": "1",
"unit_price": "20000",
"subtotal": 20000
}
],
"whitelisted_payment_method": [
"VA_BRI",
"VA_DANAMON",
"VA_MAYBANK",
"QRIS"
],
"redirect_url": null,
"payment_date": "2025-10-21T13:59:40+07:00",
"created_at": "2025-10-21T13:59:40+07:00",
"updated_at": "2025-10-21T15:16:05+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 102,
"reff_no": "PL2025101614560568f0a515bd75c",
"title": "tes",
"payment_url": "http://localhost:3000/b2b/PL2025101614560568f0a515bd75c",
"status": "open",
"status_computed": "open",
"required_customer_detail": false,
"max_usage": 1,
"current_usage": 1,
"expired_at": null,
"is_expired": false,
"total_amount": "10000.00",
"items": [
{
"name": "produk a",
"quantity": "1",
"unit_price": "10000",
"subtotal": 10000
}
],
"whitelisted_payment_method": [
"VA_BRI",
"VA_DANAMON",
"VA_MAYBANK",
"QRIS"
],
"payment_date": "2025-10-16T14:56:23+07:00",
"created_at": "2025-10-16T14:56:23+07:00",
"updated_at": "2025-10-16T14:57:26+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 101,
"reff_no": "PL2025101614552668f0a4ee060d8",
"title": "tes ini 10k",
"payment_url": "http://localhost:3000/b2b/PL2025101614552668f0a4ee060d8",
"status": "open",
"status_computed": "open",
"required_customer_detail": true,
"max_usage": 1,
"current_usage": 1,
"expired_at": null,
"is_expired": false,
"total_amount": "10000.00",
"items": [
{
"name": "produk a",
"quantity": "1",
"unit_price": "10000",
"subtotal": 10000
}
],
"whitelisted_payment_method": [
"VA_BRI",
"VA_DANAMON",
"VA_MAYBANK",
"QRIS"
],
"payment_date": "2025-10-16T14:55:55+07:00",
"created_at": "2025-10-16T14:55:55+07:00",
"updated_at": "2025-10-17T17:57:53+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 100,
"reff_no": "PL2025101614544068f0a4c0694c9",
"title": "Payment for Order #100",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c0694c9",
"status": "open",
"status_computed": "expired",
"required_customer_detail": false,
"max_usage": 4,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "980000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 99,
"reff_no": "PL2025101614544068f0a4c0690dc",
"title": "Payment for Order #99",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c0690dc",
"status": "open",
"status_computed": "expired",
"required_customer_detail": true,
"max_usage": 5,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "900000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 98,
"reff_no": "PL2025101614544068f0a4c068cab",
"title": "Payment for Order #98",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c068cab",
"status": "open",
"status_computed": "expired",
"required_customer_detail": false,
"max_usage": 3,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "880000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 97,
"reff_no": "PL2025101614544068f0a4c0688ed",
"title": "Payment for Order #97",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c0688ed",
"status": "open",
"status_computed": "expired",
"required_customer_detail": false,
"max_usage": 5,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "400000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 96,
"reff_no": "PL2025101614544068f0a4c0684d6",
"title": "Payment for Order #96",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c0684d6",
"status": "open",
"status_computed": "expired",
"required_customer_detail": false,
"max_usage": 1,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "860000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 95,
"reff_no": "PL2025101614544068f0a4c068096",
"title": "Payment for Order #95",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c068096",
"status": "closed",
"status_computed": "closed",
"required_customer_detail": false,
"max_usage": 2,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "290000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 94,
"reff_no": "PL2025101614544068f0a4c067c01",
"title": "Payment for Order #94",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c067c01",
"status": "closed",
"status_computed": "closed",
"required_customer_detail": false,
"max_usage": 2,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "350000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 93,
"reff_no": "PL2025101614544068f0a4c067825",
"title": "Payment for Order #93",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c067825",
"status": "open",
"status_computed": "expired",
"required_customer_detail": true,
"max_usage": 1,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "30000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 92,
"reff_no": "PL2025101614544068f0a4c067451",
"title": "Payment for Order #92",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c067451",
"status": "closed",
"status_computed": "closed",
"required_customer_detail": true,
"max_usage": 2,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "170000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 91,
"reff_no": "PL2025101614544068f0a4c06705c",
"title": "Payment for Order #91",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c06705c",
"status": "closed",
"status_computed": "closed",
"required_customer_detail": false,
"max_usage": 4,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "340000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 90,
"reff_no": "PL2025101614544068f0a4c066c4a",
"title": "Payment for Order #90",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c066c4a",
"status": "open",
"status_computed": "expired",
"required_customer_detail": true,
"max_usage": 1,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "750000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 89,
"reff_no": "PL2025101614544068f0a4c066823",
"title": "Payment for Order #89",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c066823",
"status": "closed",
"status_computed": "closed",
"required_customer_detail": true,
"max_usage": 5,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "330000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 88,
"reff_no": "PL2025101614544068f0a4c0663a2",
"title": "Payment for Order #88",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c0663a2",
"status": "open",
"status_computed": "expired",
"required_customer_detail": true,
"max_usage": 2,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "890000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 87,
"reff_no": "PL2025101614544068f0a4c065f77",
"title": "Payment for Order #87",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c065f77",
"status": "open",
"status_computed": "expired",
"required_customer_detail": false,
"max_usage": 5,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "490000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 86,
"reff_no": "PL2025101614544068f0a4c065b14",
"title": "Payment for Order #86",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c065b14",
"status": "closed",
"status_computed": "closed",
"required_customer_detail": true,
"max_usage": 3,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "500000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 85,
"reff_no": "PL2025101614544068f0a4c0656ca",
"title": "Payment for Order #85",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c0656ca",
"status": "open",
"status_computed": "expired",
"required_customer_detail": true,
"max_usage": 3,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "640000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 84,
"reff_no": "PL2025101614544068f0a4c065257",
"title": "Payment for Order #84",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c065257",
"status": "open",
"status_computed": "expired",
"required_customer_detail": true,
"max_usage": 5,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "660000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 83,
"reff_no": "PL2025101614544068f0a4c064e20",
"title": "Payment for Order #83",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c064e20",
"status": "closed",
"status_computed": "closed",
"required_customer_detail": true,
"max_usage": 4,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "130000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 82,
"reff_no": "PL2025101614544068f0a4c064922",
"title": "Payment for Order #82",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c064922",
"status": "closed",
"status_computed": "closed",
"required_customer_detail": true,
"max_usage": 2,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "1000000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 81,
"reff_no": "PL2025101614544068f0a4c06442a",
"title": "Payment for Order #81",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c06442a",
"status": "open",
"status_computed": "expired",
"required_customer_detail": false,
"max_usage": 5,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "420000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 80,
"reff_no": "PL2025101614544068f0a4c063ad1",
"title": "Payment for Order #80",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c063ad1",
"status": "open",
"status_computed": "expired",
"required_customer_detail": true,
"max_usage": 5,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "840000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
},
{
"id": 79,
"reff_no": "PL2025101614544068f0a4c061943",
"title": "Payment for Order #79",
"payment_url": "http://localhost:3000/b2b/PL2025101614544068f0a4c061943",
"status": "open",
"status_computed": "expired",
"required_customer_detail": true,
"max_usage": 5,
"current_usage": 0,
"expired_at": "2025-10-17T14:54:40+07:00",
"is_expired": true,
"total_amount": "510000.00",
"items": null,
"whitelisted_payment_method": null,
"payment_date": null,
"created_at": "2025-10-16T14:54:40+07:00",
"updated_at": "2025-10-16T14:54:40+07:00",
"account": {
"id": "01K7P073Q8RE2A9PQT8Q7MXPN4",
"name": "Moh. Zulkifli Katili",
"email": "tes@gmail.com",
"phone": "08123993201",
"status": "active"
}
}
],
"pagination": {
"count": 25,
"total": 103,
"perPage": 25,
"currentPage": 1,
"totalPages": 5,
"links": {
"next": "https://pg-b2b.singapay.test/api/v1.0/payment-link-manage/01K7P073Q8RE2A9PQT8Q7MXPN4?page=2"
}
}
}