List assistant threads
Returns the most recent AI assistant conversation threads for the authenticated dealer. Use the take query parameter to limit how many threads are returned.
Authorization
basic Basic Authorization header
In: header
Query Parameters
20int32Response Body
application/json
application/json
application/json
curl -X GET "https://api.dealerai.com/api/v1/assistant/threads"[
{
"thread_id": "string",
"dealer_id": "string",
"title": "string",
"objective": "string",
"status": "string",
"latest_run_id": "string",
"created_date": "2019-08-24T14:15:22Z",
"last_modified_date": "2019-08-24T14:15:22Z"
}
]{
"message": "string",
"details": null
}{
"message": "string",
"details": null
}Get assistant capabilities
Returns the capabilities the AI assistant currently supports for your account, such as available tools, data sources, and predefined task categories. Use this to discover what the assistant can do before starting a thread.
Send a message to the assistant
Sends a user message to the AI assistant. If no thread is specified a new thread is created. The request is accepted asynchronously (202) and processed as a run; poll the run or its events endpoint to retrieve the assistant's response.