Skip to main content

Tags

The /tags endpoint allows you to view, and modify your Dripcel tags.

View all tags

GET /tags

View a list of all your tags.

  • 🔐 Permissions: ["tag.read"]

Response

Success

200
{
ok: true,
data: Tag[]
}

View a single tag

GET /tags/:tag_id

View a single tag.

  • 🔐 Permissions: ["tag.read"]

Response

Success

200
{
ok: true,
data: Tag
}

Delete a single tag

DELETE /tags/:tag_id

Delete a single tag.

  • 🔐 Permissions: ["tag.delete"]
danger

This will also remove the tag from all contacts and campaigns that have it.

Response

Success

200
{
ok: true,
data: Tag
}