Skip to main content
PATCH
/
opportunity-tags
/
{id}
Update an opportunity tag
curl --request PATCH \
  --url https://www.ruddr.io/api/workspace/opportunity-tags/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "isActive": true
}
'
{
  "id": "a5f1c8d3-7e42-4b86-90d0-e3b7c6f02a19",
  "name": "Strategic Account",
  "isActive": true,
  "createdAt": "2025-02-10T09:15:42.891Z"
}
A custom attribute that can be assigned to opportunities and used to filter reports.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The opportunity tag uuid.

Body

application/json
name
string

The name of the opportunity tag. Max 255 characters.

isActive
boolean

Whether the opportunity tag is active.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the opportunity tag.

isActive
boolean

Whether the opportunity tag is active.

createdAt
string<date-time>

The timestamp when the object was created.