Add a portfolio tag to an organization.
POST
/v1/organizations/{id}/tags
const url = 'https://api.adversarial.com/api/v1/organizations/123e4567-e89b-12d3-a456-426614174000/tags';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"tag_id":"2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.adversarial.com/api/v1/organizations/123e4567-e89b-12d3-a456-426614174000/tags \ --header 'Content-Type: application/json' \ --data '{ "tag_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" }'Portfolio tags are your own labels for grouping organizations in the portfolio view. They are separate from register tags, which belong to a single organization and categorize its risks and incidents. Only portfolio tags can be applied to an organization through this endpoint; passing a register tag is rejected.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string format: uuid
The UUID of the organization
Example
123e4567-e89b-12d3-a456-426614174000Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
tag_id
required
string format: uuid
Examplegenerated
{ "tag_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"}Responses
Section titled “Responses”Tag added to organization
Organization not found
Tag already associated with organization