> ## Documentation Index
> Fetch the complete documentation index at: https://docs.svalync.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Send Call

> Learn how to initiate outbound phone calls using Svalync Voice AI agents. Start making phone calls using the agent ID and svalync internal phone number.

####

## Authorization

<ParamField header="x-api-key" type="string" required>
  Your Api Key
</ParamField>

### Body

Make a phone call from agent

<ParamField body="phone_number" type="number" required>
  The phone number to be called.
</ParamField>

<ParamField body="agentId" type="number" required>
  Agent id which will initiate the outbound call
</ParamField>

<ParamField body="from_phone_number" type="string" required value="internal">
  Phone number of the sender default value is **internal**
</ParamField>

## Response

<ResponseField name="response" type="array">
  <Expandable title="properties">
    <ResponseField name="agent" type="string">
      ID of the agent handling the call.
    </ResponseField>

    <ResponseField name="userId" type="string">
      The user identifier associated with the call.
    </ResponseField>

    <ResponseField name="phoneNumber" type="string">
      The phone number associated with the call.
    </ResponseField>

    <ResponseField name="fromPhoneNumber" type="string">
      The originating phone number of the call.
    </ResponseField>

    <ResponseField name="currentDateTime" type="string">
      The timestamp representing the current date and time.
    </ResponseField>

    <ResponseField name="callDirection" type="string">
      The direction of the call (e.g., INBOUND or OUTBOUND).
    </ResponseField>

    <ResponseField name="userData" type="object">
      Additional user data associated with the call.
    </ResponseField>
  </Expandable>
</ResponseField>
