• Introduction
    • Getting Started
    • Authentication
  • Guide
    • Common Code Patterns
    • Metrics
  • Data
  • Deal Management
  • User
    • POSTClient Access Token
  • Chat
LogoLogo
ChatMessage

Retry Assistant Response

POST
/api/v1/group/:group_id/thread/:thread_id/message/assistant-retry
POST
/api/v1/group/:group_id/thread/:thread_id/message/assistant-retry
1curl -X POST https://app.termina.ai/api/v1/group/1/thread/1/message/assistant-retry \
2 -H "Authorization: Bearer <token>"
Try it
201Created
1{
2 "group_id": 1,
3 "thread_id": 1,
4 "message_id": 1,
5 "detail": "string"
6}

Retry getting an assistant response for a specific message:

  1. Get the original user message
  2. Queue a new Snowman call to get an assistant response as a background task
  3. Return the original message details
Was this page helpful?
Previous

Get Latest Message

Next
Built with

Path parameters

group_idintegerRequired
thread_idintegerRequired

Headers

AuthorizationstringRequired

Bearer authentication of the form Bearer <token>, where token is your auth token.

Response

Successful Response
group_idinteger
thread_idinteger
message_idinteger
detailstring

Errors