Azeer API Documentation
  1. Contacts
Azeer API Documentation
  • Welcome 👋
  • API Authentication
  • API Endpoints
    • Messages
      • Messages Overview
      • Get Templates List
      • Send a Template Message
      • Send a Text Message
      • Send a Document
      • Send an Image
    • Agents
      • List All Agents
      • Get an Agent Details
      • Assign Contact to an Agent
    • Contacts
      • Create a Contact
        POST
      • Get Contact Details
        GET
    • Webhooks
      • Webhooks Overview
      • List All Webhooks
      • Get Webhook Details
      • Create Webhook
      • Delete Webhook
    • Tags
      • Create a Tag
      • List All Tags
      • Adding Tag to a Contact
  1. Contacts

Create a Contact

POST
https://api.mottasl.ai/v1/contact/create
Last modified:2025-12-10 08:12:26
Create a new single/multiple contact, You can create up to 1000 contact per bulck bach

Request

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

Example
{
    "mode": "string",
    "contacts": [
        {
            "platform_id": "string",
            "platform": "string",
            "image_url": "string",
            "profile_name": "string",
            "profile_display_name": "string",
            "profile_email": "string",
            "country_code": "string",
            "tags": [
                0
            ]
        }
    ]
}

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/contact/create' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "mode": "string",
    "contacts": [
        {
            "platform_id": "string",
            "platform": "string",
            "image_url": "string",
            "profile_name": "string",
            "profile_display_name": "string",
            "profile_email": "string",
            "country_code": "string",
            "tags": [
                0
            ]
        }
    ]
}'

Responses

🟢200Success
application/json
Body

Example
{}
🟠400BadRequest
Modified at 2025-12-10 08:12:26
Previous
Assign Contact to an Agent
Next
Get Contact Details
Built with