Skip to main content
WEBHOOK POST
This webhook is sent when a reply is sent to a lead.

Overview

The reply.sent webhook is triggered when a reply is sent to a lead. RevReply sends an HTTP POST request to your configured webhook URL containing an event object and information about the sent reply.

Event

The webhook event is identified by the following name:
Description: A reply has been sent.

Payload

All webhook requests follow the same top-level structure, containing an event object and a data object.

Event object

Data object

The data object contains information about the sent reply, lead, and conversation.

Example payload

Handling the webhook

Your webhook endpoint should accept an HTTP POST 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.

Event details