Azeer API Documentation
  1. Custoum Fields
Azeer API Documentation
  • Welcome to Azeer API 👋
  • 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
      • Get Contact Details
    • 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
    • Custoum Fields
      • List Custoum Fields
        GET
  1. Custoum Fields

List Custoum Fields

GET
https://api.mottasl.ai/v1/customfield/group
Last modified:2026-03-02 00:15:09
Use this endpoint to retrieve all custom fields defined for your business, grouped by their field type.
Each field object includes essential metadata such as ID, display_name, and type.
This endpoint is typically used to:
Render dynamic forms based on the fields your business has configured.
Discover available field IDs before setting or updating contact values.
Map field types to the correct input format in your integration.
💡
Use this list to retrieve a field's id before calling endpoints that require field_id (for example: setting or updating a custom field value on a contact).

Request

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

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/customfield/group' \
--header 'Authorization: Bearer <token>'

Responses

🟢200OK
application/json
Body

Example
{
    "data": {
        "checkbox": [
            {
                "display_name": "string",
                "id": 0,
                "type": "string"
            }
        ],
        "chips": [
            {
                "display_name": "string",
                "id": 0,
                "type": "string"
            }
        ],
        "date": [
            {
                "display_name": "string",
                "id": 0,
                "type": "string"
            }
        ],
        "switch": [
            {
                "display_name": "string",
                "id": 0,
                "type": "string"
            }
        ],
        "text": [
            {
                "display_name": "string",
                "id": 0,
                "type": "string"
            }
        ],
        "time": [
            {
                "display_name": "string",
                "id": 0,
                "type": "string"
            }
        ],
        "url": [
            {
                "display_name": "string",
                "id": 0,
                "type": "string"
            }
        ]
    },
    "status": 0,
    "success": true
}
Modified at 2026-03-02 00:15:09
Previous
Adding Tag to a Contact
Built with