{
"api_url": "https://api.example.com",
"pc_url": "https://www.example.com",
"h5_url": "https://m.example.com",
"website_phone": "400-123-4567",
"website_address": "北京市朝阳区",
"admin_site_name": "管理后台",
"admin_site_logo": "/logo.png"
}
curl --location --request POST '/adminapi/system/config/editWebsite' \
--header 'access-token: {{access-token}}' \
--header 'refresh-token: {{refresh-token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"api_url": "https://api.example.com",
"pc_url": "https://www.example.com",
"h5_url": "https://m.example.com",
"website_phone": "400-123-4567",
"website_address": "北京市朝阳区",
"admin_site_name": "管理后台",
"admin_site_logo": "/logo.png"
}'
{
"code": 200,
"msg": "操作成功"
}