Inticore API Documentation
  1. Transactions
Inticore API Documentation
  • General
    • Introduction
    • API Base URL
    • Response Code List
    • Document Versioning
  • Guidance for Generating Signature
    • Payment/Deposit Request
    • Transfer/Disbursement Request
    • Check Transaction
    • Merchant Balance
    • Callback Notification
  • Transactions
    • Payment/Deposit Request
      POST
    • Transfer/Disbursement Request
      POST
    • Check Transaction
      POST
    • Callback Notification
      POST
  • Products
    • Product/Channel List
      GET
  • Balance
    • Merchant Balance
      POST
  1. Transactions

Transfer/Disbursement Request

Develop Env
https://dev.your-api-server.com
Develop Env
https://dev.your-api-server.com
POST
/payout/{merchantCode}
API for requesting Transfer/Disbursement transaction

Request

Path Params

Body Params application/json

Example
{
  "PaymentId": 9001,
  "MerchantCode": "F00021",
  "Service": "payment",
  "RefNo": "F1815231461010080646",
  "Amount": 119085,
  "CustomerId": "1234123456",
  "CustomerName": "Jason Statham",
  "BackendURL": "https://cba.com/public/providers/coms/backend",
  "Signature": "smGUjNVoq2WVCAwGIkQIiw6Xe50="
}

Responses

🟢200Success
application/json
Body

Example
{
    "code": "00",
    "status": 200,
    "message": "SUCCESS",
    "error": "",
    "data": {
        "TransId": "c9fcdb9f-ca7a-48fb-a294-5d993ba00171",
        "ErrDesc": null,
        "Status": "SUCCESS",
        "MerchantCode": "F00021",
        "Amount": 119085,
        "Service": "PAYMENT",
        "PaymentId": 9001,
        "RefNo": "F1815231461010080646",
        "PayID": "09112024TPN000001825"
    }
}
Previous
Payment/Deposit Request
Next
Check Transaction
Built with