Payjn(IDN) - Interface doc
  1. Payout
Payjn(IDN) - Interface doc
  • Integration Guide
  • Signature Rules
  • Attachment Code Table
  • Collection
    • Initiate Collection (API)
      POST
    • Initiate Collection (H5 Cashier)
      POST
    • Query Collection Order
      POST
    • Query Available Payment Methods
      POST
  • Payout
    • Initiate Payout
      POST
    • Query Payout Order
      POST
  • Account
    • Query account balance
      POST
  • Callback Notification
    • Collection callback notification
    • Payout callback notification
  1. Payout

Query Payout Order

POST
/api-pay/payout/order/query

Request

Header Params

Body Params application/json

Example
{
    "merchantCode": "258251",
    "merchantOrderId": "P20250208508999"
}

Request Code 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 '/api-pay/payout/order/query' \
--header 'sign: oohK8nHyS9RH53r6PzyBj+yNjXutIbaAnH3nHfKoVdLKxbOdsnyRhnM4ZlmHNNC8m8MO+9JNyPdL8YbZyFIC8EbsLLRWA6NRn16/7j1NZZHj5cW0CBzPl9TePOJ+Ei89zddvNf8L6X5Zo5cfz7smbo/kghz9DVoyoElVIcoYceSU9fzt6J4zCWBjRfDFOwru0FQAxxE9yfEKUMLpVz2nOAXMl1EIhx06mIKql/js3e2AfoZl5vJllBenF8MpbK/7YM0vedC8IkzZ3esI8uDtNufsjzEs+q1mMtq3Qx89GJqesw1qFVazTKTcQ6FJbdTUdJUTkgTZfEYv7q8gcpyQjQ==' \
--header 'Content-Type: application/json' \
--data-raw '{
    "merchantCode": "258251",
    "merchantOrderId": "P20250208508999"
}'

Responses

🟢200成功
application/json
Body

Examples
{
    "code": 200,
    "msg": "success",
    "data": {
        "merchantCode": "258251",
        "platformOrderId": "P2582511751179602496922",
        "merchantOrderId": "P20250208508999",
        "amount": "30000.00",
        "status": "PROCESSING",
        "bankCode": "DANA",
        "desc": "",
        "createTime": "2025-06-29 13:46:42",
        "successTime": ""
    }
}
Modified at 2025-06-30 06:31:52
Previous
Initiate Payout
Next
Query account balance