cURL
curl --request POST \ --url https://api.example.com/vendor/customer-groups/{id}/customers \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "add": [ "<string>" ], "remove": [ "<string>" ] } '
{ "customer_group": { "id": "<string>", "name": "<string>" } }
Adds or removes customers to a customer group
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the Customer group.
Create customer group details
Customer ids to add.
Customer ids to remove.
Ok
Customer group details.
Show child attributes