POST
This webhook is sent when the first inbound message of a conversation is received.
Overview
Theorchestrator.first.message webhook is triggered when the first inbound message of a conversation is received.
RevReply sends an HTTP POST request to your configured webhook URL containing an event object and information about the first received message.
Event
The webhook event is identified by the following name:Payload
All webhook requests follow the same top-level structure, containing anevent object and a data object.
Event object
Data object
Thedata object contains information about the first inbound message, lead, and conversation.
Example payload
Handling the webhook
Your webhook endpoint should accept an HTTPPOST request with a JSON body.
A successful webhook handler should process the event and return an appropriate HTTP success response.
Because webhook delivery is event-driven, your application should identify the event using event.name before processing the contents of data.