{
"type": "object",
"properties": {
"payerId": {
"type": "string",
"description": "打款人ID"
},
"kycStatus": {
"type": "string",
"description": "kyc状态 KYC Status 0- Pending 1- Rejected 2- Completed"
},
"reason": {
"type": "string",
"description": "状态描述"
}
},
"x-apifox-orders": [
"payerId",
"kycStatus",
"reason"
],
"required": [
"payerId",
"kycStatus",
"reason"
]
}curl --location --request POST '/webhook/notify' \
--header 'topic: payer_status' \
--header 'sign;' \
--header 'x-token: {{x-token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "object",
"properties": {
"payerId": {
"type": "string",
"description": "打款人ID"
},
"kycStatus": {
"type": "string",
"description": "kyc状态 KYC Status 0- Pending 1- Rejected 2- Completed"
},
"reason": {
"type": "string",
"description": "状态描述"
}
},
"x-apifox-orders": [
"payerId",
"kycStatus",
"reason"
],
"required": [
"payerId",
"kycStatus",
"reason"
]
}'{}