curl --request GET \
--url https://api.dev.opencorpus.ai/assistants/ \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"user_id": "<string>",
"name": "<string>",
"system_instruction": "<string>",
"voice": {},
"llm": {},
"transcriber": {},
"knowledge_base": {},
"transport": {},
"description": "<string>",
"first_message": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"attached_knowledge_bases": []
}
]List all assistants for the current user with attached knowledge bases
curl --request GET \
--url https://api.dev.opencorpus.ai/assistants/ \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"user_id": "<string>",
"name": "<string>",
"system_instruction": "<string>",
"voice": {},
"llm": {},
"transcriber": {},
"knowledge_base": {},
"transport": {},
"description": "<string>",
"first_message": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"attached_knowledge_bases": []
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response