Welcome to the Secure Payments API documentation! Below is a guide to help you understand the key endpoints and functionalities. For a quick start, check out our Secure Payments Quickstart.

🔑 Key Endpoints

  • GET /secure_payments/status
    Retrieve the current status of the payment system.

    API_Reference
  • POST /secure_payments/transaction
    Initiate a new payment transaction.

    Transaction_Example

📋 Request & Response Parameters

Parameter Type Description
amount string Payment amount in USD (e.g., "100.00")
currency string Currency code (e.g., "USD")
customer_id string Unique identifier for the customer

Example request payload:

{
  "amount": "50.00",
  "currency": "USD",
  "customer_id": "C123456"
}
Request_Example

📦 Response Format

A successful response will look like:

{
  "transaction_id": "T789012",
  "status": "success",
  "message": "Payment processed securely."
}

For more details on error handling, visit Secure Payments Error Codes.

Response_Example