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.
Authorization
basic Basic Authorization header
In: header
Response Body
application/json
application/json
application/json
curl -X GET "https://api.dealerai.com/api/v1/assistant/threads/capabilities"{
"skills": [
{
"name": "string",
"description": "string",
"instructions": "string"
}
],
"tools": [
{
"name": "string",
"description": "string"
}
]
}{
"message": "string",
"details": null
}{
"message": "string",
"details": null
}Execute a predefined assistant task
Runs the predefined assistant task identified by taskKey using the parameters supplied in the request body, and returns the task result. Use the predefined-tasks list endpoint to discover valid task keys and their expected parameters.
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.