Status

application status

GET {{base_url}}/v2/status/

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

Query Parameters

Name
Type
Description

api_key*

String

This is supplier specific and provided by BUMPER

signature*

String

token*

String

Application token

Headers

Name
Type
Description

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": "paylater",
        "payment_type": "paylater"
    },
    "additional_data": {
        "key1": "value1",
        "key2": "value2",
        "key3": "value3"
    }
}

Response (Structure)

Name
Type
Description

success*

boolean

true or false

message*

String

Description if required

data*

array

Contains data related to the status

additional_data

array

Contain a list of keys previously send in apply endpoint

Response (data array)

Name
Type
Description

token

String

Unique identifier

status

String

Application stats:

  • pending - Application not started

  • inprogress - Application in progress, customer has applied

  • completed - Payment complete

  • failed - Customer failed application

  • cancelled - Application has been cancelled

  • error - Error has occurred

customer_reference

String

Order reference sent in apply endpoint

amount

String

Application amount

min_amount_allowed

String

Min amount allowed for application

max_amount_allowed

String

Max amount allowed for application

invoicenumber

String

Invoice number assigned to application

initial_payment_type

String

paylater or paynow, how the application started

payment_type

String

paylater or paynow, how the application ended

Last updated