Ayolinx-Openapi
🇬🇧English
  • 🇬🇧English
  • 🇨🇳中文
  1. APIS Ayolinx Provided to Merchant
Ayolinx-Openapi
🇬🇧English
  • 🇬🇧English
  • 🇨🇳中文
  • Openapi-EN-US
    • Read before development
      • Introduction
      • Header Parameter Description
      • Signature generation rules
      • Channel description
      • Error code description
      • Callback description
      • PartnerServiceId description
    • GetAccessToken
      • Access Token B2B
    • Qris
      • APIS Ayolinx Provided to Merchant
        • Generate Qris
        • Query Qris
        • Cancel Qris
      • APIS Need Merchant to Provide
        • Payment Notify
    • EWallet
      • APIS Ayolinx Provided to Merchant
        • Get Payment Url
          POST
        • Inquiry Status
          POST
      • APIS Need Merchant to Provid
        • Payment Notify
    • VirtualAccount
      • APIS Ayolinx Provided To Merchant
        • Error Codes
        • Create VA
        • Inquiry Va
      • APIS Need Merchant To Provide
        • Callback introduction
        • Access Token B2B
        • Payment
      • Non-snap callback interface
        • Payment Notify
  1. APIS Ayolinx Provided to Merchant

Inquiry Status

Developing
POST
/direct-debit/core/v1/debit/status

Request

Body Params application/json
originalPartnerReferenceNo
string 
required
transaction number genereted by merchant
additionalInfo
object 
required
channel
string 
required
EMONEY_DANA_SNAP
Example
{
  "originalPartnerReferenceNo": "fd3f5af0-af57-4513-95a8-77dfds3473",
  "additionalInfo": {
    "channel": "EMONEY_DANA_SNAP"
  }
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://sandbox.dev.ayolinx.id:9080/direct-debit/core/v1/debit/status' \
--header 'Content-Type: application/json' \
--data-raw '{
    "originalPartnerReferenceNo":"fd3f5af0-af57-4513-95a8-77dfds3473",
    "additionalInfo":{
        "channel":"EMONEY_DANA_SNAP"
    }
}'

Responses

🟢200Success
application/json
Body
responseCode
string 
required
responseMessage
string 
required
originalReferenceNo
string 
required
ayolinx生成交易号
originalPartnerReferenceNo
string 
required
商户生成交易号
amount
object 
required
交易金额
currency
string 
required
货币单位
value
string 
required
净值
latestTransactionStatus
string 
required
交易状态的类别代码。其值包括
finishedTime
string 
required
支付完成时间
additionalInfo
object 
required
channel
string 
required
渠道参数EMONEY_DANA_SNAP
Example
{
  "responseCode": "2005500",
  "responseMessage": "Successful",
  "originalReferenceNo": "2531eff6f87c4ae984d00eb024816917",
  "originalPartnerReferenceNo": "fd3f5af0-af57-4513-95a8-77dfds3473",
  "amount": {
    "currency": "IDR",
    "value": "30.00"
  },
  "latestTransactionStatus": "00",
  "finishedTime": "2025-03-21T05:56:55+00:00",
  "additionalInfo": {
    "channel": "EMONEY_DANA_SNAP"
  }
}
Modified at 2025-04-01 12:55:46
Previous
Get Payment Url
Next
Payment Notify