curl --request POST \
--url https://api.skulabs.com/customer/remove_tag \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
],
"tag_id": "<string>"
}
'{
"success": true
}Remove a tag from one or more customers.
curl --request POST \
--url https://api.skulabs.com/customer/remove_tag \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
],
"tag_id": "<string>"
}
'{
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Tag removed from customers
Whether the operation succeeded