Missed Call
Enables dropping call on client number.
The Missed Call service enables a client to drop calls on a Voice enabled number. After this action has been completed - the call was dropped, information about it (called number, calling number and time of call) will be sent to a URL provided by the client.
Prerequisites
To activate this service, please contact your account manager. If you do not have an account, create one by visiting this link: https://www.infobip.com/en/get-started
In order to use the Missed Call service, the first step is to purchase a number (DID number) which will serve as a bridge between the two parties. Use our Numbers API or Customer portal to purchase a Voice enabled phone number.
When the service is set up, you will be ready to advertise this number to your customers.
Missed call action setup
The missed call action can be set up to forward the information about the received calls immediately. To enable this flow, a forwarding URL should be provided to your account manager, who will activate the service.
You will receive a POST request to the given URL in the following format:
POST https://www.example.com/api/
Request parameters
| Property name | Type | Description |
|---|---|---|
| callingNumber | string | Number of person who made a call. |
| calledNumber | string | The purchased number. |
| timeOfCall | date | Time when call was made. |
Request example
Content-Type: application/json;charset=UTF-8
User-Agent: Java/1.8.0_161
Content-Length: 87
Accept: text/plain, application/json, application/*+json, */*
Host: www.example.com
{
"calledNumber": "123654987",
"callingNumber": "987456321",
"timeOfCall": 1523624149392
}