- Trigger internal workflows in your infrastructure
- Send data to third-party services (e.g., Slack, GitHub, Zapier)
- Power real-time integrations inside Marty apps

Subscriptions
You can create a webhook subscription within your Marty app by choosing the topics that you want to be notified about and providing an destination where you want the notifications to be sent. A webhook subscription defines:- Which event topics you want to listen to
- The destination where Marty should send notifications
Topics
A topic is the event that happens within Intercom that triggers the webhook. In your subscription you can choose and enable any of the available topics for the version that you are on. When your endpoint is hit you will receive a notification to that endpoint.Notifications
A notification is the event object delivered when an event is triggered. The notifications contain data payloads that contain references to the Intercom objects associated with the event. Notifications for all topics will be sent to the URL you provided for your subscription.Destinations
Marty webhooks can be delivered to multiple destination types depending on your integration needs and infrastructure setup. Supported destinations include:- Webhook (HTTP Endpoint) – Direct HTTP callbacks to your server or third-party APIs
- Hookdeck Event Gateway – Reliable event delivery layer with retries, observability, and replay capabilities
- AWS SQS – Fully managed message queue for scalable asynchronous processing
- AWS Kinesis – Real-time streaming and data ingestion pipeline
- AWS S3 – Event storage for archival, audit, or data lake use cases
- GCP Pub/Sub – Google Cloud messaging system for event-driven architectures
- Azure Service Bus – Enterprise messaging platform for Azure-based systems
- RabbitMQ – Flexible open-source message broker for routing and queueing
- Apache Kafka – High-throughput distributed event streaming platform
Webhook Delivery
When a webhook delivery fails, Marty automatically retries sending the event using a configurable retry strategy. When an event occurs:- Marty identifies all active subscriptions that match the event topic
- It sends an message request to each configured endpoint or destination
- Your system is expected to respond with a
2xxstatus code to confirm successful receipt
- Marty retries delivery using an exponential backoff strategy
- Persistent failures may result in temporary disabling of the endpoint to protect system stability
Best Practices
To ensure reliable webhook processing:- Always respond quickly (within a few seconds)
- Handle retries safely (webhooks may be delivered more than once)
- Verify payload authenticity if signatures are provided
- Process events asynchronously when possible