Blooio API Reference
Contacts

Create a contact

Create a new contact with a phone number (E.164 format) or email address.

POST
/contacts

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Request Body

application/json

identifier*string

Phone number (E.164 format, e.g., +15551234567) or email address

name?string

Display name for the contact

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://backend.blooio.com/v2/api/contacts" \  -H "Content-Type: application/json" \  -d '{    "identifier": "+15551234567"  }'
{
  "id": "string",
  "contact_id": "string",
  "identifier": "string",
  "name": "string",
  "type": "phone",
  "created_at": 0,
  "last_message_time": 0,
  "tags": [
    "string"
  ]
}
{
  "error": "string",
  "status": 0
}
{
  "error": "string",
  "status": 0
}
{
  "error": "string",
  "status": 0
}