Status

Get 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": "paynow",
        "payment_type": "paynow"
    },
    "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 – Waiting on customer action

  • completed – Payment made

  • failed – Payment Failed

  • cancelled – Payment cancelled

  • error – Unknown reason, error returned

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 payment started

payment_type

String

paylater or paynow, how the payment ended

Last updated