Skip to main content
GET
/
admin
/
assistants
/
{assistant_id}
Fetch Assistant
curl --request GET \
  --url https://api.decodahealth.com/admin/assistants/{assistant_id} \
  --header 'API-KEY: <api-key>' \
  --header 'TENANT: <tenant>'
{
  "id": "<string>",
  "firstName": "<string>",
  "assistantType": "SCHEDULER",
  "timezone": "<string>",
  "description": "<string>",
  "customPrompt": "<string>",
  "modality": "VOICE",
  "beginSentenceTemplate": "<string>",
  "model": "gemini-2.5-flash",
  "tools": [
    "<string>"
  ],
  "enabled": true,
  "phoneNumber": "<string>",
  "fallbackPhoneNumber": "<string>",
  "isArchived": true,
  "isDefault": true,
  "primaryLocationId": "<string>",
  "recurringEvents": []
}

Headers

TENANT
string
required

The tenant you are making this request on behalf of

API-KEY
string
required

Your api key

Path Parameters

assistant_id
string
required

Response

Successful Response

id
string
required
firstName
string
required
assistantType
enum<string>
required
Available options:
SCHEDULER,
BILLER,
NOTE_TAKER,
NOTE_UPLOADER,
CALL_SUMMARIZER,
FORM_ASSISTANT,
INBOUND_CALL,
CALL_REMINDER,
CALL_FOLLOW_UP,
CALL_LAB_TECHNICIAN,
INBOUND_TEXT
timezone
string
required
description
string | null
customPrompt
string | null
modality
enum<string> | null
Available options:
VOICE,
TEXT
beginSentenceTemplate
string | null
model
enum<string> | null
Available options:
gemini-2.5-flash,
claude-3-7-sonnet,
claude-3-5-haiku,
gpt-4.1,
gpt-4o-realtime-preview,
gpt-4o-mini-realtime-preview,
gpt-4o,
gpt-4o-mini,
gemini-2.0-flash,
gemini-2.5-flash,
gemini-2.5-flash-preview-05-20,
gemini-2.5-flash-lite,
gemini-live
tools
string[] | null
enabled
boolean | null
phoneNumber
string | null
fallbackPhoneNumber
string | null
isArchived
boolean | null
isDefault
boolean | null
primaryLocationId
string | null
recurringEvents
RecurringEventDetail · object[]