Skip to main content
POST
/
opportunity-tags
Create an opportunity tag
curl --request POST \
  --url https://www.ruddr.io/api/workspace/opportunity-tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "isActive": true
}
'
{
  "id": "a3f7c821-9d4e-4b2a-8c6f-1e5d03b72a94",
  "name": "Enterprise",
  "isActive": true,
  "createdAt": "2025-06-12T14:22:11.504Z"
}
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.

Body

application/json
name
string
required

The name of the opportunity tag.

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.