Contactsv2
Update a contact
PATCH
/contacts/{contactId}Update a contact's name.
Path parameters
contactIdRequiredstringContact identifier (phone number in E.164 format or email, URL-encoded)
Headers
AuthorizationRequiredstringYour API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.
Bearer
Body parameters
JSONnameoptionalstring | nullNew display name (null to clear)
Returns
idoptionalstringContact identifier (phone or email)
contact_idoptionalstringInternal contact ID
identifieroptionalstringPhone number (E.164) or email
nameoptionalstring | nulltypeoptionalstring"phone""email"created_atoptionalintegerlast_message_timeoptionalinteger | nulltagsoptionalstring[]Response codes
200Contact updated
400Invalid request parameters
401Authentication required or invalid
404Resource not found
Sends a live request with your values and shows the real response below. Your key is stored only in this browser.
curl -X PATCH https://api.blooio.com/v2/api/contacts/%2B15551234567 \ -H "Authorization: Bearer bl_live_..." \ -H "Content-Type: application/json" \ -d '{ "name": "Jane Doe" }'{ "id": "ct_a1b2c3d4", "contact_id": "ct_a1b2c3d4", "identifier": "+15551234567", "name": "Jane Doe", "type": "phone", "created_at": 0, "last_message_time": 0, "tags": [ "string" ]}