Payment API
  1. Schemas
Payment API
  • Sale Request
    POST
  • Status Request
    POST
  • Refund Request
    POST
  • Schemas
    • Schemas
      • Sale
      • Merchant
      • Customer
      • Billing
      • Billing-Card
      • Webhooks
      • Refund-Transaction
  1. Schemas

Sale

{
    "merchant": {
        "id": "M-01J37M4HKHX8S575EAQJSTRHDT",
        "site-id": "S-01J37M4HKMVGJTYABA3Z1GN3M6",
        "password": "XOXwNe9ij6Po",
        "track-id": "408-867-5309",
        "return-url": "https://example.com/return-url"
    },
    "billing": {
        "currency-code": "USD",
        "amount": 12.34,
        "product-desc": "Product Description",
        "card": {
            "holder": "John Doe",
            "number": "4242424242424242",
            "exp-y": "2030",
            "exp-m": "11",
            "cvv": "123"
        }
    },
    "customer": {
        "email": "john@example.com",
        "ip": "123.123.123.123",
        "country": "US",
        "zip": "10001",
        "state": "State",
        "city": "City",
        "address": "My Address",
        "phone": "+17182222222"
    }
}
Built with