<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [sip.js](./sip.js.md) &gt; [SimpleUser](./sip.js.simpleuser.md) &gt; [call](./sip.js.simpleuser.call.md)

## SimpleUser.call() method

Make an outoing call.

<b>Signature:</b>

```typescript
call(destination: string, inviterOptions?: InviterOptions, inviterInviteOptions?: InviterInviteOptions): Promise<void>;
```

## Parameters

|  Parameter | Type | Description |
|  --- | --- | --- |
|  destination | <code>string</code> | The target destination to call. A SIP address to send the INVITE to. |
|  inviterOptions | <code>InviterOptions</code> |  |
|  inviterInviteOptions | <code>InviterInviteOptions</code> |  |

<b>Returns:</b>

`Promise<void>`

## Remarks

Send an INVITE request to create a new Session. Resolves when the INVITE request is sent, otherwise rejects. Use `onCallAnswered` delegate method to determine if Session is established.

