For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
AcademyContact SalesHelp CenterDashboard
DocumentationAPI ReferenceIntegrationsAdministrationChangelog
DocumentationAPI ReferenceIntegrationsAdministrationChangelog
LogoLogo
AcademyContact SalesHelp CenterDashboard

Changelog

Stay up to date with the latest changes to Synthflow.
January 6, 2026
January 6, 2026
Was this page helpful?
Previous

January 5, 2026

Next
Built with

GPT-5.2 is now supported

Added GPT-5.2 support for agents.

EndpointTitle
POST /assistantsCreate an agent
PUT /assistants/:model_idUpdate an agent
1"agent": {
2 "llm": "gpt-5.2"
3 }

New parameter: message_before_action_starts for custom actions

Custom actions now support an optional message_before_action_starts parameter that allows you to specify a message the agent will speak before the action is triggered.

What is it? This optional string parameter lets you set a custom message that the agent will say before executing a custom action, providing better user experience and context during action execution.

EndpointTitle
POST /actionsCreate an action
PUT /actions/{action_id}Update an action
1"CUSTOM_ACTION": {
2 "http_mode": "GET",
3 "url": "https://example.com/api",
4 "message_before_action_starts": "Let me check that for you"
5 }