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

Documentation Index

Fetch the complete documentation index at: https://docs.synack.com/llms.txt

Use this file to discover all available pages before exploring further.

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.

Pattern: ^[0-9a-z]{1,50}

Body

application/json

Tags to patch.

uids
string[]
required

Unique identifier for a tag.

Pattern: ^[0-9a-f]{12}
addEntities
object[]
delEntityUids
string[]

Unique identifier for an entity.

Pattern: ^[0-9a-f]{12}

Response

No content.