Skip to main content
POST
/
v1.0
/
organizations
/
{orgUid}
/
tags
cURL
curl --request POST \
  --url https://client.synack.com/api/tagging/v1.0/organizations/{orgUid}/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tags": [
    {
      "name": "<string>",
      "entities": [
        {
          "uid": "<string>",
          "entityType": "asset"
        }
      ]
    }
  ]
}
'
{
  "tags": [
    {
      "uid": "<string>",
      "name": "<string>",
      "orgUid": "<string>",
      "entities": [
        {
          "uid": "<string>",
          "entityType": "asset"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

orgUid
string
required

Unique identifier for an organization group. Unique identifier for an organization.

Body

application/json

Tags to create.

tags
object[]

Response

Paginated tags.

tags
object[]