Purpose
Theenqueue method is used to add the identified user to a call queue. Common use cases include allowing users to request a call for support, onboarding, or product feedback directly from your app.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
enqueue method is used to add the identified user to a call queue. Common use cases include allowing users to request a call for support, onboarding, or product feedback directly from your app.
func enqueue(reason: String = nil, preferredCallTime: String? = nil)
| Name | Type | Description |
|---|---|---|
reason | String? | Optional reason the user was added to the call queue |
preferredCallTime | String? | Optional users preferred call time |
// Add the user to the call queue for a support request
UserKit.shared.enqueue(reason: "Support Request", preferredCallTime: "Today")