Dial to SIP Endpoint

In secenrios where your telephony provider does not offer elastic SIP trunking or if you have a more complex telephony setup unsuitable for elastic SIP trunking, you can use direct SIP dialing to our endpoint.

In this scenario, Synthflow does not directly place or receive calls. Rather, your telephony system manages the dialing process to connect with the specified SIP endpoint. You will need to develop the integration logic tailored to your telephony provider's requirements. From Synthflow’s standpoint, all call interactions will be treated as incoming, so your integration must explicitly define call direction handling.

Creating a V2 Assistant via API

Follow these steps to create a V2 Assistant using the SynthFlow API. The process involves two main steps:

  1. Creating a custom phone number
  2. Creating the assistant and linking it to the phone number

1. Create a Custom Phone Number

Endpoint:
POST /v2/custom-numbers

Headers:

{
  "Content-Type": "application/json",
  "Authorization": "Bearer {TOKEN}"
}

Body:

{
  "workspace_id": "workspace_id",
  "phone_number": "phone_number",
  "friendly_name": "Friendly Name",
  "trunk_username": "username",         // Optional
  "trunk_pwd": "dflkvn23REFD#@"        // Optional
}

trunk_username and trunk_pwd are optional fields.

2. Create a V2 Assistant

This call creates a V2 assistant and binds it to the previously created phone number.

Make sure the phone number is created before calling this endpoint.

Endpoint:
POST /v2/assistants

Headers:

{
  "Content-Type": "application/json",
  "Authorization": "Bearer {TOKEN}"
}

Body:

{
  "type": "inbound",
  "agent": {
    "llm": "gpt-4o",
    "language": "en-US",
    "prompt": "hey",
    "greeting_message": "hi",
    "voice_id": "qTj9lsKOMtF3uVefOvPi"
  },
  "name": "TestName",
  "phone_number": "",
  "voice_engine_version": "2.0"   // Important
}

View API documentation for other possible fields

Final Step: Configure Twilio

Once the trunk is ready on SynthFlow, redirect Twilio calls to it using TwiML commands.

Javascript Example:

// webServer.js

const express = require('express');
const { twiml: { VoiceResponse } } = require('twilio');

const app = express();
const PORT = process.env.PORT || 3000;

const TERMINATION = "sipin.synthflow.ai:32681";

/**
 * Redirects a call to SynthFlow SIP endpoint.
 */
app.get('/redirect_call', (req, res) => {
  const called = req.query.Called;
  if (!called) {
    return res.status(400).send('Missing "Called" query parameter');
  }

  const voiceResponse = new VoiceResponse();
  voiceResponse.dial().sip(`sip:${called}@${TERMINATION}`);

  res.set('Content-Type', 'text/xml');
  res.status(200).send(voiceResponse.toString());
});

app.listen(PORT, () => {
  console.log(`Server is running on http://localhost:${PORT}`);
});

Python Example:

from fastapi import FastAPI, Response

from twilio.twiml.voice_response import VoiceResponse

app = FastAPI()
TERMINATION = "sipin.synthflow.ai:32681"

@app.get("/redirect_call")
async def redirect_call(Called: str): # pylint: disable=invalid-name
    voice = VoiceResponse()
    voice.dial().sip(f"sip:{Called}@{TERMINATION}")
    return Response(str(voice), media_type="text/xml", status_code=200)