Transaction status
Request address
POST 
https://api.mvpgateways.com/status/Headers
{
    "Content-Type": "application/json",
    "MERCHANT_KEY": "***"
}Request Parameters
Name
Required
Type
Description
Example
order_id
Yes
String
Cabbagino order id
1231254123123
signature
Yes
String
Request signature, see Request signature generating rules
d9f5713990de5c6e32169dba1f0102f540018975
Request Example
{
    "order_id": "173020046562736927738477393445",
    "signature": "signature"
}Response Example
Deposits/Payouts
Success
{
  "status": 4,
  "type": 1,
  "external_id": "0199a479-708b-701c-bcf1-66d6579ad6be",
  "order_id": "175940104728974362446178589779",
  "amount": 1000,
  "currency": "AZN",
  "customer_id": "333272587",
  "signature": "4f61cc89d0390c0757f780d8d4c8105beb072187"
}Decline
{
  "status": 5,
  "type": 1,
  "external_id": "0199a468-8dbe-71d0-be51-dcedd670b482",
  "order_id": "175939994081993687954778661537",
  "amount": 3000,
  "currency": "AZN",
  "customer_id": "333101256",
  "reason_code": "051",
  "reason": "User did not pay or did not finalize the payment. Ask user to try again and finalize the payment.",
  "signature": "8b50d0b048c39e21d78114cded6b43a452256913"
}Transaction statuses
ID
Name
Description
1
INITIAL
The initial state of the transaction
2
AWAITING_CONFIRMATION
Awaiting confirmation
3
PROCESSING
Transaction is being processed
4
SUCCESS
Successful transaction
5
DECLINE
Failed transaction
6
ERROR
There is an error with processing the transaction
7
UNKNOWN
There is an error with the transaction yet the details are not clear
Transaction types
ID
Name
Example in callback
1
DEPOSIT
"type": 1
2
PAYOUT
"type": 2
3
REFUND
"type": 3
Last updated