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
}Append a user message to an existing session. The server will process it and produce assistant and tool turns asynchronously via the event stream.
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
}JWT bearer token issued by fabro-web. See the Authentication guide for details.
Unique session identifier.
Request body for sending a follow-up message in an existing session.
The user message text.
"Can you also add a bypass for internal health-check IPs?"
Message accepted for processing
Acknowledgement that the message was accepted for asynchronous processing.
Whether the message was accepted for processing.
true