curl --request POST \
--url https://api.skulabs.com/customer/add_tag \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
],
"tag_id": "<string>"
}
'{
"success": true
}Add a tag to one or more customers.
curl --request POST \
--url https://api.skulabs.com/customer/add_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 added to customers
Whether the operation succeeded