{"uid": "xxx","limit": 10}
curl --location --request POST '/docmee/v1/api/user/createApiToken' \
--header 'Api-Key: xxx' \
--header 'Content-Type: application/json' \
--data-raw '{"uid": "xxx","limit": 10}'
{
"data": {
"token": "sk_xxx", // token (调用api接口鉴权用,请求头传token)
"expireTime": 7200 // 过期时间(秒)
},
"code": 0,
"message": "操作成功"
}