Mentions
Create Mention
API Reference
Endpoints
- Actions
- Agents
- Call Now
- Calls
- Campaigns
- Chat
- Chat Widget
- Knowledge Base
- Dispositions
- Lead Lists
- Leads
- Mentions
- Phone Numbers
- Reports
- Roles
- Scripts
- Voices
- Webhooks
Mentions
Create Mention
POST
/
v1
/
mentions
curl --request POST \
--url https://api.eqho.ai/v1/mentions \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"description": "The favorite color of the lead",
"display_name": "favorite_color",
"tags": [
"custom_fields"
]
}'
{
"_id": "<string>",
"account_id": "<string>",
"tags": [
"global"
],
"mention": "<string>",
"display_name": "<string>",
"description": "<string>",
"enabled": true,
"history": {
"revision": 0,
"created_at": "2023-11-07T05:31:56Z",
"created_by": "unknown",
"last_modified_at": "2023-11-07T05:31:56Z",
"last_modified_by": "unknown"
}
}
Authorizations
Body
application/json
Response
200
application/json
Successful Response
Container for a single mention record.
Was this page helpful?
curl --request POST \
--url https://api.eqho.ai/v1/mentions \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"description": "The favorite color of the lead",
"display_name": "favorite_color",
"tags": [
"custom_fields"
]
}'
{
"_id": "<string>",
"account_id": "<string>",
"tags": [
"global"
],
"mention": "<string>",
"display_name": "<string>",
"description": "<string>",
"enabled": true,
"history": {
"revision": 0,
"created_at": "2023-11-07T05:31:56Z",
"created_by": "unknown",
"last_modified_at": "2023-11-07T05:31:56Z",
"last_modified_by": "unknown"
}
}