AI Assistant API
APIs related to AI Assistant management.
AI Assistant
1. Get Assistants
curl --location 'https://app-gateway.dev.imbrace.co/journeys/v2/ai/assistants?limit=2&sort=desc' \ --header 'x-temp-token: api_648b936b-cd1d-4553-bb30-7124d3910100' \ --header 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:141.0) Gecko/20100101 Firefox/141.0'
2. Create Assistant
{ "name": "testing assistant 6", "description": "description", "instructions": "instructions", "file_ids": [], "metadata": { "key_1": "value_1" } }curl --location 'https://app-gateway.dev.imbrace.co/journeys/v2/ai/assistants' \ --header 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:141.0) Gecko/20100101 Firefox/141.0' \ --header 'x-temp-token: api_9fd1566e-c85b-4d31-90d1-e88ac5bfcfc1' \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer api_9fd1566e-c85b-4d31-90d1-e88ac5bfcfc1' \ --data '{ "name": "testing assistant 6", "description": "description", "instructions": "instructions", "file_ids": [], "metadata": { "key_1": "value_1" } }'
3. Update Assistant
4. Delete Assistant
5. Create Assistant App
6. Update Assistant App
7. Delete Assistant App
Last updated