List Assistants

Returns assistants for the calling organization, sorted by updatedAt desc. Filter by platform, name (case- insensitive substring), activation flag, and channel-connected flag.

GET/v2.0/assistants

Query Parameters

Query

ParameterTypeDescription
platformstringwhatsapp | instagram | messenger
namestringCase-insensitive substring match on assistant name
isActivebooleantrue | false
isConnectedbooleantrue → has phone or pageId; false → unconnected
pagenumber1-based page indexDefault: 1
limitnumberPage size (1–100)Default: 20

Example

cURL
curl -X GET "https://api.sendiee.com/v2.0/assistants?platform=whatsapp&isConnected=true" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "success": true,
  "data": [
    {
      "modelId": "kQ8z3cR7hV2bWa",
      "name": "Sales bot",
      "description": "Handles inbound product enquiries",
      "platform": "whatsapp",
      "isActive": true,
      "isConnected": true,
      "channel": {
        "platform": "whatsapp",
        "phone": "917012345678",
        "pageId": null,
        "wabaId": "664a...",
        "instanceId": null
      },
      "ai": {
        "provider": "openai",
        "model": "gpt-4.1",
        "maxTokens": 250,
        "temperature": 0.7,
        "topP": 1,
        "systemPrompt": "...",
        "promptCacheEnabled": false
      },
      "behavior": {
        "memoryMinutes": 60,
        "messageDelay": 3,
        "typingEnabled": true,
        "sendSeen": true,
        "disableOnInterrupt": true,
        "disableDuration": 30,
        "enableCommand": "",
        "disableCommand": "",
        "groupChatEnabled": false,
        "groupActivateOnMention": false
      },
      "detection": {
        "voiceEnabled": false,
        "imageEnabled": false,
        "mediaInToolResponses": false
      },
      "voice": {
        "voiceResponseEnabled": false,
        "voiceProvider": "gemini",
        "voiceModel": "gemini-2.5-flash-preview-tts",
        "voiceName": "Zephyr",
        "voicePrompt": ""
      },
      "audience": {
        "phoneNumbersList": [],
        "isNumbersExcluded": true
      },
      "safety": {
        "abuseLimit": {
          "enabled": false,
          "msgsPerWindow": 25,
          "msgsWindowSeconds": 600,
          "imagesPerWindow": 5,
          "imagesWindowSeconds": 300,
          "tokensPerWindow": 50000,
          "tokensWindowSeconds": 900,
          "blockMinutes": 60,
          "cooldownMessage": ""
        }
      },
      "tools": [],
      "createdAt": "2026-04-12T10:00:00.000Z",
      "updatedAt": "2026-04-29T05:18:42.000Z"
    }
  ],
  "pagination": {
    "total": 4,
    "page": 1,
    "limit": 20,
    "totalPages": 1,
    "hasMore": false
  }
}