跳转到主要内容
GET
/
v1
/
invitations
/
list
我的邀请码列表
curl --request GET \
  --url https://api.runly.pro/v1/invitations/list \
  --header 'Authorization: Bearer <token>'
{
  "status": {
    "code": 200,
    "message": "OK",
    "trace_id": "tr_inv_list"
  },
  "data": [
    {
      "code": "ABC1234",
      "status": "used"
    },
    {
      "code": "XYZ9876",
      "status": "active"
    }
  ],
  "usage": {
    "latency_ms": 15
  }
}

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

响应

200 - application/json

列表数据

status
object
必填
data
object
output
object
usage
object