Skip to main content
POST
/
v1
/
tags
Create a Tag
curl --request POST \
  --url https://api.monaco.com/v1/tags/ \
  --header 'Content-Type: application/json' \
  --data '
{
  "object": "accounts",
  "name": "Enterprise",
  "color": "blue"
}
'
{
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Enterprise",
    "color": "blue"
  },
  "meta": {
    "timestamp": "2026-04-21T12:00:00Z"
  }
}

Documentation Index

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

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

Body

application/json

Request body for creating a tag via POST.

object
enum<string>
required

Object type the tag applies to. One of contacts, accounts, opportunities.

Available options:
contacts,
accounts,
opportunities
Example:

"accounts"

name
string
required

Display name of the tag. Letters, numbers, and spaces only.

Required string length: 1 - 100
Pattern: ^[a-zA-Z0-9\s]+$
Example:

"Enterprise"

color
enum<string> | null

Display color of the tag.

Available options:
green,
blue,
red,
yellow,
purple,
berry,
peach,
gray
Example:

"blue"

Response

Successful Response

data
TagResponse · object
required
meta
ResponseMeta · object