跳到主要内容

注册会员

1、注册会员

接口路径

  • POST
  • /api/member/create

请求参数

参数名称类型必填说明
agent_id商户 IDstring必填商户ID
user_id商户侧用户 IDstring必填商户侧用户ID, 字符串长度最小3,最大20, 只支持英文、数字以及_
user_name商户侧用户名string必填商户侧用户名,只支持英文、数字以及_
desc描述string非必填用户描述信息,字符串长度最大20,只支持英文、数字、空格以及_
timestamp当前时间戳int必填传调用接口时的时间戳(单位毫秒,有效期十分钟)
sign签名string必填签名算法详见接口说明

响应参数

参数名称类型说明
code响应码int错误码
message响应信息string错误信息

请求范例

curl --location 'https://staging.aig1234.com/api/member/create' \
--header 'Content-Type: application/json' \
--data '{
"agent_id": "agent001",
"user_id": "testUid03",
"user_name": "testUser",
"desc": "a test user",
"timestamp": 1732589849000,
"sign": "b7297489e3d6f1f9761c63c7dcdbce38"
}'

响应范例

{
"code": 200,
"message": "success",
"data": {}
}

错误码

200 成功
408000 请求参数错误
408003 白名单限制
408004 API频率限制
600100 签名不合法
700101 商户不存在
700102 会员已存在