Bumper API Documentation
  • BUMPER API Documentation
  • Reference
    • Payment Solutions
      • PayByLink
        • PayLater
          • Start Payment
            • Example Request
          • Products
          • Status
          • Update
            • Example Request
          • Cancel
            • Example Request
        • PayNow
          • Start Payment
            • Example Request
          • Status
          • Update
            • Example Request
          • Cancel
            • Example Request
          • Refund
            • Example Request
      • PayInStore
        • Start Payment
          • Example Request
        • Status
        • Update
          • Example Request
        • Cancel
          • Example Request
        • Refund
          • Example Request
  • Webhooks
  • Authentication
  • Redirect Flow
  • Redirection
  • Tracking & Impressions
  • Test Environment
  • Best Practice
  • Calculator iFrame
  • FAQ
  • Changelog
Powered by GitBook
On this page
  1. Reference
  2. Payment Solutions
  3. PayInStore

Status

GET {{base_url}}/v2/status/

Retrieve the status of and existing 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

Content-Type*

application/json

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

PreviousExample RequestNextUpdate

Last updated 4 months ago

The is created using the token key only. TOKEN=value&

Hash