Status

Get application status

GET {{base_url}}/v2/status/

Retrieve the status of and existing PayLater application or PayNow payment.

Query Parameters

NameTypeDescription

api_key*

String

This is supplier specific and provided by BUMPER

signature*

String

Hash created through all the parameters of this request body

token*

String

Application token

Headers

NameTypeDescription

Accept*

application/json

{
    "success": true,
    "message": "",
    "data": {
        "token": "9b35d922402f4c7cbad",
        "status": "pending",
        "customer_reference": "CUST1234",
        "amount": "2500",
        "min_amount_allowed": "60",
        "max_amount_allowed": "3000",
        "invoicenumber": "INV1234",
        "initial_payment_type": "paynow",
        "payment_type": "paynow"
    },
    "additional_data": {
        "key1": "value1",
        "key2": "value2",
        "key3": "value3"
    }
}

Last updated