For AI agents: visit https://alchemycn.readme.io/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI.
- POST
open/api/kyc/userRegister
| 参数名 | 必选 | 类型 | 长度 | 说明 |
|---|
| redirectUrl | 否 | string | 256 | kyc成功跳转url |
| callbackUrl | 否 | string | 256 | kyc成功webhook url |
{
"redirectUrl":"https://card.alchemypay.org/web3auth",
"callbackUrl":"https://card-api.alchemypay.org/kyc/callback"
}
| 参数名 | 类型 | 说明 |
|---|
| success | boolean | 成功标志 |
| error | boolean | 错误标志 |
| code | long | 返回编码 |
| msg | string | 返回信息 |
| traceId | string | traceId |
| model | object | 返回对象 |
| 参数名 | 类型 | 说明 |
|---|
| linkUrl | string | kyc 链接 |
{
"code":"0",
"msg":"成功",
"model":{
"linkUrl":"https://dev-card.alchemypay.org/web3auth/300317494606861619080"
},
"traceId":"665597457b9b37cb000187a035002030",
"success":true,
"error":false
}