1. Requests
E-Pay
  • Default module
    • Inital
      • Payment Types
    • Credit Card
      • Pay with card number
      • Pay with card token
      • Payment Status
      • Payment Refund
      • Payment Complete
      • Payment Void
    • Card Storage
      • Saved Card List
      • Saved Card Get
      • Saved Card Create
      • Saved Card Delete
    • Queries
      • Credit Card Bin Query / Installment
      • Credit Card Bin Query / Installments
    • ParolaparaPay
      • Create Payment (Send OTP Message)
      • Otp Verify
      • Capture
      • Cancel
      • Refund
      • Status
    • Schemas
      • Requests
        • Order Request
        • Order Item Request
        • Address
        • Customer
        • Payment Request
      • Responses
        • Installment
        • Stored Card
        • Payment Status
        • Paymentstate
      • Enums
        • Card types
  • UcuzYolu
    • Parolapay
      • Cancel
      • Capture
      • Health Check
      • Initiate
      • OTP verify
      • Payment Status
      • Refund
      • ResendOTp
      • Status
  • UcuzYolu
    • Parolapay
      • Cancel
      • Capture
      • Health Check
      • Initiate
      • OTP verify
      • Payment Status
      • Refund
      • ResendOTp
      • Status
  1. Requests

Payment Request

{
    "order_reference": "string",
    "auth_mode": "auth",
    "force_3d": true,
    "callback_url": "string",
    "order": {
        "guid": "string",
        "order_code": "string",
        "price": 0,
        "tax": 0,
        "delivery_price": 0,
        "insurance_price": 0,
        "discount": 0,
        "total": 0,
        "items": [
            {
                "product_id": 0,
                "product_name": "string",
                "price": 0,
                "tax_rate": 0,
                "tax": 0,
                "amount": 0,
                "total": 0
            }
        ]
    },
    "customer": {
        "external_id": "string",
        "fullname": "string",
        "email": "string",
        "phone": "string",
        "birthdate": "1990-01-31",
        "tax_office": "string",
        "tax_number": "string"
    },
    "address": {
        "invoice_name": "string",
        "invoice_address_line1": "string",
        "invoice_address_line2": "string",
        "invoice_address_zipcode": "string",
        "invoice_address_town": "string",
        "invoice_address_city": "string",
        "invoice_address_country": "string",
        "delivery_name": "string",
        "delivery_address_line1": "string",
        "delivery_address_line2": "string",
        "delivery_address_zipcode": "string",
        "delivery_address_town": "string",
        "delivery_address_city": "string",
        "delivery_address_country": "string",
        "invoice_address_line3": "string",
        "invoice_address_line4": "string",
        "delivery_address_line3": "string",
        "delivery_address_line4": "string"
    }
}
Built with