Create a new tag and associate it with an assessment. Only organization admins are able to create new tags.
cURL
curl --request POST \ --url https://api.synack.com/v1/assessment_tags \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "assessment_id": "<string>" } '
{ "id": 123, "name": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Name of the tag
ID of the assessment to tag
The newly created tag
custom assessment tag