***

title: call
slug: /reference/python/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**

```python {9}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

result = client.mfa.call(**{
    "to": "+15559876543",
    "from": "+15551234567",
    "message": "Your verification code is {code}",
})
request_id = result["id"]
```