- Home [object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
- Getting started
- Use cases
- API
Telephony event
An IP telephony event. The system uses this data to display notifications about a call to associated users.
async function VoipParseWebhookRequest(request: FetchRequest): Promise<VoipWebhookParseResult> { const data = JSON.parse(request.body); return { event: { event: VoipWebhookEvent.NotifyStart, direction: VoipCallDirection.In, dstPhone: data.dstPhone, srcPhone: data.srcPhone, disposition: VoipCallDisposition.Unknown, }; }; }
Hierarchy
Properties
direction
Call direction.
disposition
Call outcome.
dstPhone
Number being called
event
Telephony event type.
srcPhone
Number that is calling
Properties