{
"name": "商户名称",
"contact_name": "联系人",
"contact_phone": "13800138000",
"contact_address": "联系地址",
"is_enabled": 1,
"sort": 255
}
curl --location --request POST '/adminapi/merchant' \
--header 'access-token: {{access-token}}' \
--header 'refresh-token: {{refresh-token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "商户名称",
"contact_name": "联系人",
"contact_phone": "13800138000",
"contact_address": "联系地址",
"is_enabled": 1,
"sort": 255
}'
{
"code": 200,
"msg": "添加成功"
}