- 文档介绍
- 认证
- 账户
- 余额
- 申请收款账户
- 收款账户
- 收单
- 入账
- 汇率
- 换汇
- 付款
- 转账
- 流水
- 账户实名更新请求
- 收款人
- 模拟
- Webhooks
- 通知
实名待更新
POST
/legal_entity_request_created
请求参数
Body 参数application/json
type
string
必需
data
object (LegalEntityRequest)
必需
id
string
实名更新请求 ID
account_id
string
账户 ID
reason
array [object {2}]
原因
status
enum<string>
状态
枚举值:
INITSUBMITTEDREJECTEDSUCCESS
reject_reason
string | null
驳回原因
create_time
string
创建时间
update_time
string
更新时间
completed_time
string | null
完成时间
示例
{
"type": "string",
"data": {
"id": "string",
"account_id": "string",
"reason": [
{
"code": "string",
"message": "string"
}
],
"status": "INIT",
"reject_reason": "string",
"create_time": "string",
"update_time": "string",
"completed_time": "string"
}
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://demo-api.easypayx.com/legal_entity_request_created' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "string",
"data": {
"id": "string",
"account_id": "string",
"reason": [
{
"code": "string",
"message": "string"
}
],
"status": "INIT",
"reject_reason": "string",
"create_time": "string",
"update_time": "string",
"completed_time": "string"
}
}'
返回响应
🟢200成功
application/json
Body
object {0}
示例
{}
修改于 2023-05-26 04:15:23