Blooio API Reference
Contacts

Update a contact

Update a contact's name.

PATCH
/contacts/{contactId}

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Path Parameters

contactId*string

Contact identifier (phone number in E.164 format or email, URL-encoded)

Request Body

application/json

name?string|null

New display name (null to clear)

Response Body

application/json

application/json

application/json

application/json

curl -X PATCH "https://backend.blooio.com/v2/api/contacts/%2B15551234567" \  -H "Content-Type: application/json" \  -d '{}'
{
  "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
}