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:

  1. The user enters their phone number on the website or in the mobile application;
  2. The user is prompted to make an outgoing call to the dedicated Call Me number;
  3. The system records the call event;
  4. After that, the HTTP request (POST or GET) notifies your server of the completed authorization.

Scenario settings:

ParameterDescription
URLAddress to which the HTTP request will be sent after the call
HTTP methodMethod 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
}
ParameterDescription
idUnique call identifier
phoneUser’s phone number in international format
callDateDate of the authorization call
routingKeyPhone number to which the call is made
statusCall/authorization status

On this page