{
"account_type": "bank",
"account_name": "中国银行",
"account_number": "6217000000000000000",
"account_holder": "张三",
"is_default": 1
}
curl --location --request POST '/api/user/withdrawal-account/add' \
--header 'access-token: {{access-token}}' \
--header 'refresh-token: {{refresh-token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"account_type": "bank",
"account_name": "中国银行",
"account_number": "6217000000000000000",
"account_holder": "张三",
"is_default": 1
}'
{
"code": 200,
"msg": "操作成功",
"data": {}
}