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

Get Contact Details

GET
https://api.mottasl.ai/v1/contact/details
Last modified:2026-01-19 18:06:09
Retrieve a contact’s profile details along with all assigned tags. This endpoint returns core contact info (name, email, display name) plus the tag list and tag count—so you can personalize conversations, segment customers, and power automation rules.
💡
Use this endpoint to:
Fetch contact details (name, display name, email)
Get all tags linked to the contact (tags[]) and total count (tags_count)
Show contact context in inbox/profile views and trigger tag-based automation

Request

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

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 GET 'https://api.mottasl.ai/v1/contact/details?platform_id=9665XXXXXXXX' \
--header 'Authorization: Bearer <token>'

Responses

🟢200OK
application/json
Body

Example
{
    "data": {
        "id": 0,
        "name": "string",
        "display_name": "string",
        "email": "string",
        "tags": [
            "string"
        ],
        "tags_count": 0
    },
    "message": "string",
    "success": true
}
Modified at 2026-01-19 18:06:09
Previous
Create a Contact
Next
Webhooks Overview
Built with