> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getuserkit.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Enqueuing Calls

Use the call queue API to let users add themselves to a call queue — whether for onboarding, support, or any moment when they want to speak with your team.

<CodeGroup>
  ```swift Swift theme={null}
  UserKit.shared.enqueue(reason: "Onboarding", preferredCallTime: "Today")
  ```

  ```objc Objective-C theme={null}
  [[UserKit sharedInstance] enqueueWithReason:@"Onboarding" preferredCallTime:@"Today"];
  ```
</CodeGroup>

<img className="rounded-lg" src="https://mintcdn.com/userkit/RiUvfNuZ6hCeT5Bp/images/call-queue.png?fit=max&auto=format&n=RiUvfNuZ6hCeT5Bp&q=85&s=ec87662bd62c8b729236ab726077775f" width="2634" height="1428" data-path="images/call-queue.png" />

Each time a user is added to the call queue, UserKit automatically sends an email notification to your team.
