Blooio API Reference
FaceTime

Initiate a FaceTime call (Coming Soon)

Coming Soon -- This endpoint is temporarily disabled while we stabilize the FaceTime call flow.

Initiates a FaceTime call to the specified phone number or email address. Returns a shareable FaceTime link that anyone can use to join the call. The call will ring the contact and auto-admit the first person who joins via the link.

POST
/facetime/calls

Authorization

BearerAuth
AuthorizationBearer <token>

API key authentication. Use your API key as the bearer token.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

handle*string

Phone number (E.164) or email address to call

Response Body

application/json

application/json

application/json

curl -X POST "https://backend.blooio.com/v2/api/facetime/calls" \  -H "Content-Type: application/json" \  -d '{    "handle": "+15551234567"  }'
{
  "success": true,
  "link": "https://facetime.apple.com/join#v=1&p=xxx",
  "handle": "string"
}
{
  "error": "string",
  "status": 0
}
{
  "error": "string",
  "status": 0
}