Creating Tags
Listing the Tags within your Project.
The following call will create a new Tag called "Exclusions Tag" in the Project with the ID 1998159537
:
(Click here to learn how to get your Project ID)
curl -X POST \
'https://api.brandwatch.com/projects/1998159537/tags/' \
-H 'content-type: application/json' \
-d '{"name":"Exclusions Tag"}'
The response will look like this:
{
"id": 4047253,
"name": "Exclusions Tag"
}
Updated almost 8 years ago