Unblock a contact
POST/v2/contacts/{id}/unblock
Unblocks a contact by their Featurebase ID from the messenger/inbox.
Path Parameters
id- The Featurebase internal ID of the contact (MongoDB ObjectId)
Supported Contact Types
This endpoint unblocks both:
- Customers - Users with registered accounts
- Leads - Anonymous or unregistered visitors
Unblocking Behavior
When a contact is unblocked:
- The contact can resume sending messages via messenger
- Previously blocked conversations remain intact
- The contact regains full messenger functionality
Response
Returns an unblock confirmation object:
id- The ID of the unblocked contactobject- Always “contact”unblocked- Alwaystrue
Example Response
{
"id": "507f1f77bcf86cd799439011",
"object": "contact",
"unblocked": true
}
Version Availability
This endpoint is only available in API version 2026-01-01.nova and newer.
Unblock a contact
curl https://do.featurebase.app/v2/contacts/$ID/unblock \
-X POST \
-H "Authorization: Bearer $FEATUREBASE_API_KEY"{
"id": "507f1f77bcf86cd799439011",
"object": "contact",
"unblocked": true
}Returns Examples
{
"id": "507f1f77bcf86cd799439011",
"object": "contact",
"unblocked": true
}