- 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]
- Manage types
- Global context and isolation
- Manage apps
- Batch actions with app items
- Manage external services
- Scripts in widgets
- Web components
- Access permissions
- Getting started with processes
- Getting started with signatures
- Getting started with file previews
- Getting started with the organizational chart
- Getting started with users and groups
-
Getting started with the
Table data type - Dynamic calculation of event type
- Use cases
- API
Telephony user
This object provides information about a user on the IP telephony provider’s side. This interface is used in the
VoipGetMembers
function that returns a list of an IP telephony users.async function VoipGetMembers(): Promise<VoipMember[]> { // Getting users of the IP telephony provider const response = await fetch('https://example.com/ voip-users'); interface VoipUser { name: string; ext: string; } const voipUsers = <VoipUser[]> (await response.json()); return voipUsers.map(user => ({ id: user.ext, label: user.name, })); }
Hierarchy
Properties
id
User ID (can be an internal number or SIPID).
label
Display name (login)
Properties