跳转到主要内容
POST
/
v1
/
auth
/
register
用户注册
curl --request POST \
  --url https://api.runly.pro/v1/auth/register \
  --header 'Content-Type: application/json' \
  --data '
{
  "handle": "dow",
  "identity": "<string>",
  "password": "<string>",
  "otp": "<string>",
  "invitation_code": "<string>"
}
'
{
  "status": {
    "code": 200,
    "message": "OK",
    "trace_id": "tr_reg_456"
  },
  "data": {
    "handle": "dow",
    "status": "active",
    "message": "Welcome to Runly! Your crypto assets are initialized."
  },
  "usage": {
    "latency_ms": 220
  }
}

请求体

application/json
handle
string
必填
示例:

"dow"

identity
string
必填
password
string
必填
otp
string
必填
invitation_code
string

响应

200 - application/json

注册结果

status
object
必填
data
object
output
object
usage
object