Skip to content

公共响应 Body

字段类型必填说明
statusint业务码,见 业务码 Body status
msgstring说明文案;同一 status 下的具体原因看 msg
dataobject业务数据;失败时一般为 {}

成功示例:

json
{
  "status": 200,
  "msg": "SUCCESS",
  "data": {}
}

异常示例:

json
{
  "status": 401,
  "msg": "签名校验失败",
  "data": {}
}

说明:

  • 接口正常时 HTTP 状态码通常返回 200,业务状态看 Body status
  • 业务时间字段(expires_at / created_at / finished_at)为 RFC3339,含时区,例如 2026-06-16T16:00:10+08:00