Number Masking Webhook
Number masking in the Alohaa enhances privacy by hiding actual phone numbers during calls. This guide details the webhooks for setting up call initiation and managing completion events.
Part 1: Number Masking Call Initiation
Webhook Request Data
When a number masking call is to be initiated, Alohaa sends the following data to the client’s endpoint:
Expected Webhook Response
The client needs to process the above request and respond with the following structure, which includes the number to which the call should be forwarded and any applicable timeout settings:
Payload Fields Description
call_forwarding_number
The phone number to which the call should be forwarded.
call_timeout
Timeout for the call in seconds. '0' indicates no timeout.
Call Flow Description
The Caller initiates a call to the DID
A webhook is triggered on the Client Server with the Caller ID, Caller No., and DID No.
The Client Server responds to the webhook with the Receiver's number and Call timeout duration. Call timeout should be 0, if there is no timeout.
The Aloaha Server initiates a call to the Receiver.
The call is connected between the Caller and the Receiver.
The call is completed.
A webhook is triggered on the Client Server with the call details.
On your Alohaa platform, open the side menu and go to Settings. Then, navigate to the Webhooks submenu. Find the Number Masking - Get Receiver Details webhook, click Edit, and update the API endpoint.
Part 2: Call Completion Notification
Upon the completion of a number masking call, Alohaa sends a webhook with the following data to notify the client of the call's outcome:
Payload Fields Description
organisation_id
Unique identifier for the organization.
caller_number
Masked phone number of the caller.
receiver_number
Masked phone number of the receiver.
did_number
Direct Inward Dialing (DID) number used for the call.
received_at
Timestamp when the call was received.
ended_at
Timestamp when the call ended.
call_id
Unique identifier for the call session.
call_status
Status of the call (e.g., "answered", "not answered").
call_duration
Duration of the call in seconds
call_recording_url
URL to access the call recording.
On your Alohaa platform, open the side menu and go to Settings. Then, navigate to the Webhooks submenu. Find the Number Masking - Send Call Details webhook, click Edit, and update the API endpoint.
Last updated