D黑奴背锅 文档中心
修仙 API探险
POST/business/xiuxian/progress/start_adventure

选择一条历练路线开始历练。

注意事项

  • 等级不足返回 code=1,message='修仙请求参数无效'。
  • 路线不存在返回 code=1,message='修仙数据不存在'。
  • 角色状态非空闲返回 code=1,message='角色当前状态无法执行该操作'。

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/business/xiuxian/progress/start_adventure" \  -H "Content-Type: application/json" \  -d '{    "route": "string"  }'
{  "code": 0,  "message": "开始历练成功",  "data": {    "route": "forest",    "name": "深林历练",    "started_at": 1779502528  },  "time": 1779502528}