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

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.

tagUid
string
required

Unique identifier for a tag.

Body

application/json

Update tag's name

name
string
required

User-supplied name for this tag.

Response

No content.