Skip to main content
Create a FaceTime link that can be shared with others to join a video call.

Method Signature

await sdk.facetime.createFaceTimeLink(): Promise<string>

Returns

Returns a FaceTime link URL as a string.

Example

const faceTimeLink = await sdk.facetime.createFaceTimeLink();

console.log(`Join the call: ${faceTimeLink}`);

// Share the link in a message
await sdk.messages.sendMessage({
  chatGuid: "iMessage;-;+1234567890",
  message: `Let's video chat! ${faceTimeLink}`
});

Use Cases

Quick Video Calls

Generate FaceTime links on-demand for instant video conversations

Meeting Invitations

Send FaceTime links in advance for scheduled meetings

Group Calls

Create links for group video chats with multiple participants

Customer Support

Provide video call links for visual customer assistance
FaceTime links are compatible with iOS 15+, iPadOS 15+, and macOS 12+ devices. Recipients can join calls from compatible Apple devices using the link.

Build docs developers (and LLMs) love