7 lines
206 B
Bash
7 lines
206 B
Bash
curl --location --request POST 'https://medusa-url.com/admin/customer-groups' \
|
|
--header 'Authorization: Bearer {api_token}' \
|
|
--header 'Content-Type: application/json' \
|
|
--data-raw '{
|
|
"name": "VIP"
|
|
}'
|