GPT-5.1 is now supported

Added GPT-5.1 support for agents.

1 "agent": {
2 "llm": "gpt-5.1"
3 }


List Calls Response Update

The GET /v2/calls endpoint now returns additional call metadata and pagination information to provide more comprehensive call details.

New Fields:

  • pagination object with total_records, limit, and offset for paginated responses
  • judge_results — Call quality judging results
  • agents_used — Array of agents used during the call
  • executed_actions — Actions executed during the call
  • type_of_call — Call direction (inbound/outbound)
  • error_message — Error details if call failed
  • call_status — Current status of the call
  • labels — Array of labels associated with the call
  • agent_phone_number — Phone number used by the agent
  • deployment_type — Type of deployment
  • name — Name of the call recipient

Removed Fields:

  • timeline, recording_sid, and voice_engine_type are no longer returned


New Simulations Endpoints

We’ve added a comprehensive set of new endpoints to manage Simulation Cases and Simulation Sessions programmatically.

  • Case Management: Create, list, retrieve, update, delete, and generate simulation cases.
  • Session Management: Start a simulation and list/retrieve simulation sessions.
  • Listings: List simulation cases by agent and list all simulations.

Endpoints Added:

  • POST /simulations — Create a simulation case
  • GET /simulations — List simulation cases
  • GET /simulations/:case_id — Get a simulation case
  • PUT /simulations/:case_id — Update a simulation case
  • DELETE /simulations/:case_id — Delete a simulation case
  • POST /simulations/generate — Generate simulation cases
  • GET /simulations/agent/:agent_id — List simulation cases by agent
  • POST /simulations/start — Start a simulation
  • GET /sessions — List simulation sessions
  • GET /sessions/:session_id — Get a simulation session
  • GET /simulations/all — List simulation cases
  • GET /simulations/:case_id — Get a simulation case

Read more about the feature here: https://docs.synthflow.ai/simulations






GPT-5 is now supported

Added GPT-5 support for agents.

1 "agent": {
2 "llm": "gpt-5-chat"
3 }