Payment Verify

Upon receiving the payment notification, make an API call to confirm the payment status with the token you received.

Verify a Payment

POST https://api.paymento.io/v1/payment/verify

Headers

Name
Value

Api-key

Your Merchant API Key

Content Type

application/json

Accept

text/plain

Body

Name
Type
Nullable
Description

token

string

false

Token received from payment request.

Response

{
  "success": true,
  "message": "",
  "body": {
    "token": "3256e147c6fe4d36a9341a5112ed2214",
    "orderId": "5855",
    "additionalData": [
      {
        "key": "invoice-number",
        "value": "A-578"
      },
      {
        "key": "param2",
        "value": "value2"
      }
    ]
  }
}

Last updated