Payout Notification
Developing
POST
/PayoutNotification
Request
Body Params application/json
status
string
required
uniqueKey
string
required
country
string
required
name
string
required
phone
string
required
email
string
required
document
string
required
documentType
string
required
bankCode
string
required
bankType
string
required
bankAccount
string
required
amount
string
required
remarks
string
required
address
string
required
errorMessage
string
required
errorCode
string
required
Example
{
"status": "string",
"uniqueKey": "string",
"country": "string",
"name": "string",
"phone": "string",
"email": "string",
"document": "string",
"documentType": "string",
"bankCode": "string",
"bankType": "string",
"bankAccount": "string",
"amount": "string",
"remarks": "string",
"address": "string",
"errorMessage": "string",
"errorCode": "string"
}
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://test-cn.your-api-server.com/PayoutNotification' \
--header 'Content-Type: application/json' \
--data-raw '{
"status": "string",
"uniqueKey": "string",
"country": "string",
"name": "string",
"phone": "string",
"email": "string",
"document": "string",
"documentType": "string",
"bankCode": "string",
"bankType": "string",
"bankAccount": "string",
"amount": "string",
"remarks": "string",
"address": "string",
"errorMessage": "string",
"errorCode": "string"
}'
Responses
🟢200response
application/json
Body
isSuccess
enum<string>
required
Allowed value:
1
Example
{
"isSuccess": "1"
}
Modified at 2023-05-11 07:25:30