Paymento Documention
  • 👋Project Overview
  • Overview
    • 💡Mission and Vision
    • 📜Whitepaper
      • Problem Statement
      • Solution
      • Architecture and Technology
      • Business Model
      • Financial Sustainability
      • Tokenomics
      • Road Map
  • Accept Crypto Payments
    • ⭐Get Started
    • 🔐API Key Generation
      • How to Export xPub Keys
    • 🌐Payment Integration
    • 🛠️Prebuilt Payment Plugins
    • 🐞Testing and Simulation
      • Creating a Testnet Wallet
      • Accquire Testnet Assets
      • Creating Transactions
  • API Documention
    • API Overview
    • Payment Request
    • Payment Callback
    • Payment Verify
    • Additional APIs
      • Manage Payment Settings
      • Get List of Accepted Coins
  • Fee & Pricing
Powered by GitBook
On this page
  1. API Documention

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"
      }
    ]
  }
}
{
  "error": "Invalid request"
}
PreviousPayment CallbackNextAdditional APIs

Last updated 8 months ago