# Unblock a contact 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 contact - object - Always "contact" - unblocked - Always true ### Example Response json { "id": "507f1f77bcf86cd799439011", "object": "contact", "unblocked": true } ### Version Availability This endpoint is only available in API version 2026-01-01.nova and newer. Endpoint: POST /v2/contacts/{id}/unblock Version: 2026-01-01.nova Security: bearerAuth ## Header parameters: - `Featurebase-Version` (string) API version for this request. Defaults to your organization's configured API version if not specified. Example: "2026-01-01.nova" ## Path parameters: - `id` (string, required) Featurebase contact ID Example: "507f1f77bcf86cd799439011" ## Response 200 fields (application/json): - `id` (string, required) Unique identifier of the unblocked contact Example: "507f1f77bcf86cd799439011" - `object` (string, required) Object type identifier Enum: "contact" - `unblocked` (boolean, required) Indicates the contact was unblocked Enum: true ## Response 400 fields (application/json): - `error` (object, required) - `error.type` (string, required) The type of error returned Enum: "invalid_request_error" - `error.code` (string, required) Machine-readable error code Enum: "invalid_id" - `error.message` (string, required) Human-readable error message Example: "An error occurred" - `error.param` (string) The parameter that caused the error (if applicable) Example: "id" - `error.status` (number, required) HTTP status code Enum: 400 ## Response 404 fields (application/json): - `error` (object, required) - `error.type` (string, required) The type of error returned Enum: "invalid_request_error" - `error.code` (string, required) Machine-readable error code Enum: "contact_not_found" - `error.message` (string, required) Human-readable error message Example: "An error occurred" - `error.param` (string) The parameter that caused the error (if applicable) Example: "id" - `error.status` (number, required) HTTP status code Enum: 404