{
"name": "张三",
"mobile": "13800138000",
"status": 1,
"is_enabled": 1,
"apply_status": 1,
"audit_remark": "审核通过"
}
curl --location --request PUT '/adminapi/rider/update/' \
--header 'access-token: {{access-token}}' \
--header 'refresh-token: {{refresh-token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "张三",
"mobile": "13800138000",
"status": 1,
"is_enabled": 1,
"apply_status": 1,
"audit_remark": "审核通过"
}'
{
"code": 200,
"msg": "修改成功"
}