Blooio API Reference
Numbers & Contact Card

Share contact card (Coming Soon)

⚠️ COMING SOON - This endpoint is temporarily disabled while we stabilize this feature.

Stage the contact card for sharing in a chat. The contact card will be sent with the next outgoing message (text or attachment) in this chat. This is idempotent — calling it multiple times is harmless.

You can also trigger this inline by passing share_contact: true when sending a message.

POST
/chats/{chatId}/contact-card

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Path Parameters

chatId*string

Chat identifier. Can be: (1) phone number in E.164 format (e.g., +15551234567), (2) email address, (3) group ID (grp_xxxx), or (4) comma-separated list of phone numbers/emails for multi-recipient group chats (e.g., +15551234567,+15559876543). All values should be URL-encoded.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://backend.blooio.com/v2/api/chats/%2B15551234567/contact-card"
{
  "success": true,
  "chat_id": "string",
  "message": "Contact card staged. It will be sent with the next outgoing message in this chat."
}
{
  "error": "string",
  "status": 0
}
{
  "error": "string",
  "status": 0
}
{
  "error": "string",
  "status": 0
}