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

# my.makePhoneCall

> Make a phone call.

Initiate a phone call to the specified number.

## Parameters

| Property | Type     | Required | Description                   |
| -------- | -------- | -------- | ----------------------------- |
| number   | String   | Yes      | Phone number to call          |
| success  | Function | No       | Callback on success           |
| fail     | Function | No       | Callback on failure           |
| complete | Function | No       | Callback that always executes |

## Code Example

```javascript theme={null}
my.makePhoneCall({
  number: '+1234567890',
  success: () => {
    console.log('Call initiated');
  }
});
```
