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
  • Set Payment Settings API
  • Get Payment Settings API
  1. API Documention
  2. Additional APIs

Manage Payment Settings

This set of APIs allows you to get or set your payment settings, including the callback URL and the HTTP method to be used when Paymento sends payment status updates to your server.

Set Payment Settings API

POST https://api.paymento.io/v1/payment/settings <Description of the endpoint>

Headers

Name
Value

Api-Key

Your Merchant API Key

Content Type

application/json

Accept

text/plain

Body

Name
Type
Nullable
Description

string

false

httpMethod

int

false

HttpPost = 1

HttpPut = 2

Response

{
  "success": true,
  "message": "",
  "body": {
    "IPN_Url ": "https://yoursite.com/api/paymento/payment-status",
    "IPN_httpMethod": 1
  }
}
{
  "error": "Invalid request"
}

Get Payment Settings API

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

Headers

Name
Value

Api-Key

Your Merchant API Key

Content Type

application/json

Accept

text/plain

Response

{
  "success": true,
  "message": "",
  "body": {
    "apiEndpointPath ": "https://yoursite.com/api/paymento/payment-status",
    "httpMethod": 1
  }
}
{
  "error": "Invalid request"
}
PreviousAdditional APIsNextGet List of Accepted Coins

Last updated 7 months ago