Update
POST
{{base_url}}/v2/update/
Allows amount and invoice number to be updated. The amount can be increased or decreased to the minimum or maximum dealership product thresholds.
Headers
Name
Type
Content-Type*
application/json
Accept*
application/json
Request Body
Name
Type
Description
amount*
String
The payment amount required from the customer.
api_key*
String
This is supplier specific and provided by BUMPER
token*
String
Application token
invoice_number
String
The supplier invoice number
product_description
Array
The description of items paid by customer.
NOT SIGNED Increasing/Decreasing/Maintaining Amount
{
"success": true,
"message": "",
"data": {
"token": "cd2dd3b9ad2c4369a46e709295d13368"
}
"additional_data": {
"key1": "value1",
"key2": "value2",
"key3": "value3"
}
}
SIGNED Decreasing/Maintaining Amount
{
"success": true,
"message": "",
"data": {
"token": "cd2dd3b9ad2c4369a46e709295d13368"
}
"additional_data": {
"key1": "value1",
"key2": "value2",
"key3": "value3"
}
}
SIGNED - Increasing Amount
{
"success": true,
"message": "",
"data": {
"token": "cd2dd3b9ad2c4369a46e709295d13368",
"redirect_url": "<url>"
}
"additional_data": {
"key1": "value1",
"key2": "value2",
"key3": "value3"
}
}
Last updated