Azeer API
  1. tags
Azeer API
  • API Authentication
  • APIs
    • Agents
      • Create Agent
      • Update Agent
      • Get Agent Details
    • Contacts
      • Create Contact
      • Create Bulk Contacts
    • Messages
      • Send Message
      • Delete Message
      • Delete Bulk Messages
    • Webhooks
      • Webhooks
      • List all webhooks
      • Get Webhook Details
      • Create Webhook
      • Delete Webhook
    • App
      • Create User Session
    • tags
      • Create Tag
        POST
  1. tags

Create Tag

POST
https://api.mottasl.ai/v1/tags
Last modified:2025-10-12 08:44:37
Create a new Tag

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Example
{
    "tag": "VIP",
    "description": "VIP client",
    "colour": "#e74266"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.mottasl.ai/v1/tags' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "tag": "VIP",
    "description": "VIP client",
    "colour": "#e74266"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "data": {
        "id": 97451,
        "business_id": "8e4c6c2f-2f73-0000-0000-0000",
        "tag": "VIP",
        "colour": "#1ca08a",
        "description": "VIP Client",
        "created_by": 3077323,
        "display_name": "",
        "updated_at": "2025-10-12T08:40:43.163004Z",
        "created_at": "2025-10-12T08:40:43.163004Z"
    },
    "message": "Tag created successfully",
    "success": true
}
🔴500InternelError
🟠400BadRequest
Modified at 2025-10-12 08:44:37
Previous
Create User Session
Built with