Skip to main content
POST
/
sessions
/
{id}
/
messages
Send Session Message
curl --request POST \
  --url https://api.example.com/sessions/{id}/messages \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "Can you also add a bypass for internal health-check IPs?"
}
'
{
  "accepted": true
}

Authorizations

Authorization
string
header
required

JWT bearer token issued by fabro-web. See the Authentication guide for details.

Path Parameters

id
string<uuid>
required

Unique session identifier.

Body

application/json

Request body for sending a follow-up message in an existing session.

content
string
required

The user message text.

Example:

"Can you also add a bypass for internal health-check IPs?"

Response

Message accepted for processing

Acknowledgement that the message was accepted for asynchronous processing.

accepted
boolean
required

Whether the message was accepted for processing.

Example:

true