support.conversation.unblocked
A creator lets a silenced member's support messages through again.
When this fires
A creator lifts the block on a support conversation:
- Dashboard: Unblock member in the thread's header menu in the support inbox.
- REST:
POST /v1/support/conversations/{conversation}/unblock. - MCP: the
unblock_support_contacttool.
It does not fire when:
- The conversation was not blocked. Unblocking an unblocked thread writes nothing and emits nothing; the call is idempotent.
- A banned member is unbanned. That is
member.unbanned; a ban and a support block are independent, and lifting one does not touch the other.
Unblocking restores the flow of new messages. It does not replay anything the member sent while blocked; those messages were dropped at ingestion and are gone.
Caveats
- The thread's
statusis unchanged by an unblock, exactly as it was by the block. A thread that wasresolvedwhen blocked is stillresolvednow; the member's next message will reopen it and raisesupport.conversation.reopenedas usual. - Nothing is replayed. If the member wrote in while blocked, those messages produced no
support.message.receivedand never will. - The payload does not say how long the block lasted. Pair this event's
created_atwith the matchingsupport.conversation.blockedbyconversation_idif you report on it.
Related events
support.conversation.blocked: the state this event reverses.support.conversation.reopened: what the member's next message may now trigger.
Header Parameters
t=<unix seconds>,v1=<hex>: the HMAC-SHA256 of "<t>.<raw body>" under the endpoint's secret. Verify it before acting, and refuse a t more than 300 seconds from now. During a secret rotation a v0= signature under the previous secret may precede v1=.
The event's ULID, bare. The envelope's id is the same ULID prefixed evt_, so strip the prefix before comparing. Deduplicate on it: a retry carries the same id.
The event name, the same as the envelope's type.
Always application/json.
Always Subscriby-Webhooks/1.0.
Request Body
application/json
The signed JSON envelope posted to your endpoint.
TypeScript Definitions
Use the request body type in TypeScript.
The envelope every event is delivered in.
Response Body
Example Requests
/support.conversation.unblockedHow is this guide?