Skip to main content
PUT
/
v1
/
accounts
Upsert an Account
curl --request PUT \
  --url https://api.example.com/v1/accounts/ \
  --header 'Content-Type: application/json' \
  --data '
{
  "domain": "<string>",
  "linkedin_url": "https://linkedin.com/company/acme",
  "name": "Acme Corp",
  "status": "NEW",
  "notes": "Key enterprise prospect",
  "owner": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "tags": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}
'
{
  "data": {
    "id": "acc_abc123",
    "name": "Acme Corp",
    "status": "NEW",
    "notes": "Key enterprise prospect",
    "company": {
      "domain": "acme.com"
    },
    "tags": [
      "Enterprise"
    ],
    "created_at": "2025-06-15T10:30:00Z",
    "custom_field_7a1c9e2b-3f4d-4a8e-9b1c-2d3e4f5a6b7c": "high"
  },
  "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 upserting an account.

Custom fields can be passed as additional keys prefixed with custom_field_.

domain
string
required

Company domain for matching or creating the account

Example:

"acme.com"

linkedin_url
string | null

LinkedIn company page URL for matching or creating the account

Example:

"https://linkedin.com/company/acme"

name
string | null

Display name for the account

Example:

"Acme Corp"

status
string | null

Account status

Example:

"NEW"

notes
string | null

Notes about the account

Example:

"Key enterprise prospect"

owner
string<uuid> | null

User ID to assign as account owner

tags
string<uuid>[] | null

List of tag IDs to associate with the account

Response

Successful Response

data
AccountResponse · object
required

Account resource. Custom fields appear as additional keys prefixed with custom_field_.

meta
ResponseMeta · object