Call me
The Call Me service is designed for automatic user authorization or action confirmation via an outgoing call. After the subscriber enters their phone number in a form on a website or mobile application, they must make an outgoing call to the specified number. Once the call is completed, the system records the event and returns a confirmation via an HTTP request to the client’s side.
How it works:
- The user enters their phone number on the website or in the mobile application;
- The user is prompted to make an outgoing call to the dedicated Call Me number;
- The system records the call event;
- After that, the HTTP request (POST or GET) notifies your server of the completed authorization.

Scenario settings:
| Parameter | Description |
|---|---|
| URL | Address to which the HTTP request will be sent after the call |
| HTTP method | Method for sending data POST/GET |
| Параметры, передаваемые в теле запроса | Unique data of the call event |
HTTP request format:
Upon call completion, the service sends a request in the following format to the specified URL:
Method: POST/GET
URL: https://your-server/endpoint
Request body:
{
"id":"{id}",
"phone": "{sourceAddr}",
"callDate": "{datetime}",
"routingKey": "{destAddr}",
"status": true
}
| Parameter | Description |
|---|---|
| id | Unique call identifier |
| phone | User’s phone number in international format |
| callDate | Date of the authorization call |
| routingKey | Phone number to which the call is made |
| status | Call/authorization status |
On this page