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
      • Necessary parameter configuration
      • Error code description
      • Callback description
      • PartnerServiceId description
    • GetAccessToken
      • Access Token B2B
    • Qris
      • APIS Ayolinx Provided to Merchant
        • Generate Qris
        • Query Qris
        • Cancel Qris
      • Non-Snap APIS Need Merchant to Provide
        • Payment Notify
      • Snap APIS Need Merchant to provide
        • Access Token B2B
        • 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
    • Convenient store
      • APIS Ayolinx Provided To Merchant
        • Create retail transaction
        • retail query
      • APIS Need Merchant to Provid Copy
        • Payment Notify
  1. APIS Ayolinx Provided to Merchant

Inquiry Status

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 'https://sandbox.ayolinx.id/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
transaction id generated by ayolinx
originalPartnerReferenceNo
string 
required
transaction id generated by merchant
amount
object 
required
transaction amount
currency
string 
required
货币单位
value
string 
required
净值
latestTransactionStatus
string 
required
Transaction status code [value]
finishedTime
string 
required
finished time
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-06-17 06:25:27
Previous
Get Payment Url
Next
Payment Notify