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

Create a payout

POST
/api/payout/create

请求参数

Header 参数

Body 参数application/json

示例
{
    "payoutAccount": "123456789",
    "currency": "USD",
    "amount": 1.99,
    "account": "cillum Ut",
    "userName": "user_1",
    "ip": "127.0.0.1",
    "orderNo": "O123456",
    "notifyUrl": "https://example.com",
    "gateway": "paypal",
    "country": "US ",
    "platform": "ios",
    "phoneNumber":"12345678",
    "email":"test@test.com",
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location 'https://api-test.pinddpay.com/api/payout/create' \
--header 'accessKey: ' \
--header 'timestamp: ' \
--header 'nonce: ' \
--header 'sign: ' \
--header 'Content-Type: application/json' \
--data-raw '{
    "payoutAccount": "123456789",
    "currency": "USD",
    "amount": 1.99,
    "account": "cillum Ut",
    "userName": "user_1",
    "ip": "127.0.0.1",
    "orderNo": "O123456",
    "notifyUrl": "https://example.com",
    "gateway": "paypal",
    "country": "US ",
    "platform": "ios",
    "phoneNumber":"12345678",
    "email":"test@test.com",
}'

返回响应

🟢200成功
application/json
Bodyapplication/json

示例
{
    "code": "200",
    "type": "success",
    "message": "dolor irure",
    "result": {
        "payoutAccount": "123456789",
        "currency": "USD",
        "amount": 1.99,
        "account": "laboris",
        "userName": "user_1",
        "ip": "127.0.0.1",
        "orderNo": "O123456",
        "notifyUrl": "https://example.com",
        "gateway": "paypal",
        "country": "US_",
        "platform": "ios",
        "id": "212324345355",
        "error": "sint Excepteur dolore Lorem",
        "merchant": "1234353636363",
        "accessKey": "TEST",
        "status": "PAID"
    },
    "extras": "ipsum",
    "time": "2024-09-16 22:25:07"
}
修改于 2025-11-12 10:22:45
上一页
Webhook
下一页
Query balance
Built with