Skip to main content
POST
/
ai
/
prompt
Generate follow-up questions
curl --request POST \
  --url https://nimbussuite.com/api/v1/ai/prompt \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "lastMessage": "<string>"
}
'
{
  "suggestions": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
lastMessage
string
required

Response

Generated follow-up questions

suggestions
string[]