***

title: call
slug: /reference/typescript/rest/mfa/call
description: Send an MFA verification code via voice call.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Send an MFA verification code via voice call.

<EndpointSchemaSnippet endpoint="POST /api/relay/rest/mfa/call" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /api/relay/rest/mfa/call" />

## **Example**

```typescript {9}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com"
});

const result = await client.mfa.call({
    to: "+15559876543",
    from: "+15551234567",
    message: "Your verification code is {code}",
});
const requestId = result.id;
```