curl --request POST \
--url https://api.example.com/api/v2/projects/{project_id}/tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"color": null
}
'{
"id": "<string>",
"name": "<string>",
"color": "<string>"
}Create a new tag in the project. If color is not provided, it will be auto-assigned.
curl --request POST \
--url https://api.example.com/api/v2/projects/{project_id}/tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"color": null
}
'{
"id": "<string>",
"name": "<string>",
"color": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.