1. Payout
Pinddpay
  • Guides
    • Integration Instructions
    • Signature
  • Payin
    • Create order session
      POST
    • Create a transaction
      POST
    • Query a transaction
      GET
    • Webhook
  • Payout
    • Create a payout
      POST
    • Query balance
      GET
    • Webhook
  • Subscription
    • Card
      • Cancel subscription
      • Webhook
  • Other
    • Enums
    • Test cards
  1. Payout

Webhook

Webhook
POST
Payout Webhook

1.How to signature#

Signature Algorithm#

MD5
32-bit
Uppercase

Signature content#

Before encryptionAfter encryption
Example123456E10ADC3949BA59ABBE56E057F20F883E

Get the signature string of the request#

In each request header, get the value named sign-token

请求参数

Body 参数application/json

示例
{
    "resouce": {
        "id": "123453535363",
        "amount": 1.99,
        "payAt": "string",
        "targetAccount": "test@test.com",
        "currency": "USD",
        "status": "CREATED",
        "error": "string",
        "orderNo": "order_12345"
    },
    "eventId": "12345668686",
    "eventAt": "2025-09-05T06:13:10.6522948Z",
    "eventName": "payout.paid",
    "appId": "TEST"
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location 'https://your-api-server.com' \
--header 'Content-Type: application/json' \
--data-raw '{
    "resouce": {
        "id": "123453535363",
        "amount": 1.99,
        "payAt": "string",
        "targetAccount": "test@test.com",
        "currency": "USD",
        "status": "CREATED",
        "error": "string",
        "orderNo": "order_12345"
    },
    "eventId": "12345668686",
    "eventAt": "2025-09-05T06:13:10.6522948Z",
    "eventName": "payout.paid",
    "appId": "TEST"
}'

返回响应

🟢200成功
application/json
Bodyapplication/json

示例
{}
修改于 2025-09-23 10:30:01
上一页
Query balance
下一页
Cancel subscription
Built with