Skip to main content
Tags and statuses help organize prospects in your Inbox. Tags are flexible labels for categorization. Statuses represent pipeline stages.

Tags

List tags

Response:

Create tag

Colors accept either a predefined name ("red", "blue", "green", "purple", etc.) or a hex code ("#ef4444"). Use GET /tags/colors to see all predefined options.

Update tag

Delete tag

Deleting a tag removes it from all prospects. This cannot be undone.

Apply tags to a prospect

Tags are updated incrementally using addTags and removeTags on the prospect context endpoint:
There is no tagIds field. Tags are always modified incrementally with addTags and removeTags.

Statuses

List statuses

Response:

Create status

Update status

Delete status

Deleting a status removes it from all prospects. This cannot be undone. The consumer is responsible for handling any side effects — the API does not emit individual prospect.statusChanged events for each affected prospect.

Set prospect status

Clear prospect status


Filtering threads by tags and statuses

Filter threads using the filters parameter on GET /threads. Filters combine with AND logic:
Use filters[tags][noTags]: true or filters[statuses][noStatus]: true to find threads with no tags or no status respectively. See Managing threads — Filtering for the full list of filter options and the Query parameters reference for encoding details.

Common patterns

Tag system setup

Pipeline setup

Auto-tagging by follower count

List tags

GET /tags

Create tag

POST /tags

List statuses

GET /statuses

Create status

POST /statuses

Update prospect context

PATCH /prospects//context

Available colors

GET /colors