Singapay Home Page
Logo Icon
  1. Payment Link
  2. List

Information

MethodPathFormatAuthentication
GET/api/v1.0/payment-link-manage/{account_id}jsonOAuth 2.0 with Access Token

Request Details

Headers Structure

FieldValueTypeMandatoryLengthDescriptionExample
X-PARTNER-IDapi_keyAlphanumericMandatoryAPI key obtained from the merchant dashboard.b3ed7d4b-a96c-6c08-b3c7-12c3124242d9
Acceptapplication/jsonAlphabeticMandatorySpecifies JSON as the expected response format.application/json
AuthorizationBearer {bearerToken}AlphanumericMandatoryBearer token obtained from the get access token endpoint.Bearer eyJ0eXAiOiJKV1{…}

Response Details

Response Structure

FieldTypeMandatoryLengthDescriptionExample
statusNumericMandatory3HTTP Status Code.200
successBooleanMandatory12xx is true. 4xx-500 is false.true
dataArray ObjectConditional-Array containing payment link objects.-
> idNumericMandatory-Internal ID of the Payment Link.103
> reff_noAlphanumericMandatory-Reference number of the Payment Link.PL2025102113590968f72f3df34e5
> titleAlphanumericMandatory-Title of the payment link.tes
> payment_urlStringMandatory-URL to access the payment link.http://localhost:3000/b2b/PL2025102113590968f72f3df34e5
> statusAlphabeticMandatory-Status of the payment link. Values are open or closed.open
> status_computedAlphabeticMandatory-The computed status of the payment link. Values are open, closed, or expired.open
> required_customer_detailBooleanMandatory1Indicates if customer details are required.true
> max_usageNumericMandatory-Maximum usage count for the payment link.1000
> current_usageNumericMandatory-Current usage count of the payment link.2
> expired_atDatetime/NullConditional-Expiration date of the payment link (ISO 8601 format or null if none).2025-10-17T14:54:40+07:00
> is_expiredBooleanMandatory1Indicates if the payment link has expired.false
> total_amountNumericMandatory-Total amount of the payment link.20000.00
> itemsArray Object/NullConditional-List of items included in the payment. It is null if there are no items.-
>> nameAlphabeticMandatory-Name of the item.tes
>> quantityNumericMandatory-Quantity of the item.1
>> unit_priceNumericMandatory-Price per unit of the item.20000
>> subtotalNumericMandatory-Subtotal for the item (quantity * unit_price).20000
> whitelisted_payment_methodArray String/NullConditional-List of allowed (whitelisted) payment method codes. It is null if all methods are allowed.[ “VA_BRI”, “QRIS” ]
> redirect_urlString/NullConditional-URL to redirect the customer after payment success or expiry. It is null if not set.https://example.com/thank-you
> payment_dateDatetime/NullConditional-Date/time of the last successful payment (ISO 8601 format or null).2025-10-21T13:59:40+07:00
> created_atDatetimeMandatory-Creation date/time of the payment link (ISO 8601 format).2025-10-21T13:59:40+07:00
> updated_atDatetimeMandatory-Last update date/time of the payment link (ISO 8601 format).2025-10-21T15:16:05+07:00
> accountObjectMandatory-Account information associated with the payment link.-
>> idAlphanumericMandatory-Account ID.01K7P073Q8RE2A9PQT8Q7MXPN4
>> nameAlphabeticMandatory-Account Name.Moh. Zulkifli Katili
>> emailStringMandatory-Account email address.tes@gmail.com
>> phoneNumericMandatory-Account phone number.08123993201
>> statusAlphabeticMandatory-Account Status.active
paginationObjectConditional-Pagination metadata.-
> countNumericMandatory-The number of data items returned in the current response.25
> totalNumericMandatory-The total number of data items across all pages.103
> perPageNumericMandatory-The number of data items per page.25
> currentPageNumericMandatory-The current page number being viewed.1
> totalPagesNumericMandatory-The total number of available pages.5
> linksObjectMandatory-Links for navigating between pages.-
>> nextString/NullConditional-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

Response Example

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"
        }
    }
}