LogoLogo
Roadmap
  • 🌍Welcome
  • Get Started
    • 🚀DM Champ Accelerator
    • 📞Connecting Phone
    • 👤Creating Contacts
    • 📚List and Contact Management
    • ⬆️Importing Contacts
    • ⬇️Exporting Contacts
    • 📅Connecting Google Calendar
    • 🔢Billing System
    • 📝Creating Campaigns
    • 🏷️Creating Tags
    • 🪝Setting Up Webhooks
    • 🧮Agency Accounts
    • 🤖GHL (and others) Integration
    • ⏳Funnels
    • Connecting Facebook and Instagram
    • 💬Chats
    • 💬Chat Widget
    • WhatsApp Widget
    • 📊Dashboard
  • 🖌️Webhooks + Custom Functions
  • 🔧Mastering Custom Functions and Integrations
  • 🏷️Tags and Custom Functions
  • 🔎Real-time Web Search
  • Instagram DM Flow
  • Facebook Messenger DM Flow
  • API
    • System
    • Contacts
    • Tags
    • Summaries
    • Chat Widget
    • WhatsApp Templates
    • WhatsApp Widget
    • Messages
    • SubAccounts
    • Users
Powered by GitBook
On this page

Was this helpful?

  1. API

Tags

PreviousContactsNextSummaries

Was this helpful?

Get Tag by Name

get

Retrieve a specific tag by name

Path parameters
namestringRequired
Query parameters
apiKeystringOptional

API key for authentication

Example: your_api_key
Responses
200
Tag found
application/json
404
Tag not found
get
GET /v1/tags/{name} HTTP/1.1
Host: api.dmchamp.com
Accept: */*
{
  "name": "text",
  "description": "text"
}
  • GETGet All Tags
  • POSTCreate New Tag
  • GETGet Tag by Name

Get All Tags

get

Retrieve all tags

Query parameters
apiKeystringOptional

API key for authentication

Example: your_api_key
Responses
200
List of tags
application/json
get
GET /v1/tags HTTP/1.1
Host: api.dmchamp.com
Accept: */*
200

List of tags

[
  {
    "name": "text",
    "description": "text"
  }
]

Create New Tag

post

Create a new tag

Query parameters
apiKeystringOptional

API key for authentication

Example: your_api_key
Body
namestringRequired

Tag name

descriptionstringOptional

Tag description

Responses
201
Tag created successfully
post
POST /v1/tags HTTP/1.1
Host: api.dmchamp.com
Content-Type: application/json
Accept: */*
Content-Length: 36

{
  "name": "text",
  "description": "text"
}
201

Tag created successfully

No content