Skip to main content
POST
/
api
/
v1
/
agent-builder
/
{sessionId}
/
followup
Send a follow-up prompt to continue the conversation in an existing session
curl --request POST \
  --url https://dashboard.sequentum.com/api/v1/agent-builder/{sessionId}/followup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "message": "<string>"
}
'
{
  "success": true,
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.sequentum.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API Key authorization header. Example: "Authorization: ApiKey {your-api-key}"

Authorization
string
header
required

OAuth 2.0 Bearer token. Example: "Authorization: Bearer {access-token}"

Path Parameters

sessionId
string
required

The session ID

Body

The follow-up message

Request to send a follow-up prompt to an existing session

message
string | null

The follow-up message/prompt from the user

Response

OK

Response from sending a follow-up prompt

success
boolean
error
string | null