> For the complete documentation index, see [llms.txt](https://developers.make.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.make.com/white-label-documentation/admin-api-reference/outbound-webhooks.md).

# Outbound Webhooks

Outbound webhook subscriptions deliver Make platform events to customer-controlled HTTPS endpoints. These endpoints are proxied to the Outbound Webhooks service. Full schema documentation is available at <https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json>.

## List outbound webhooks for an organization

> Returns the outbound webhook subscriptions belonging to the given organization. Endpoint is proxy for the Outbound Webhooks service. Full schema documentation is available at <https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json>

```json
{"openapi":"3.0.0","info":{"title":"Web API v2 - Public ","version":"1.0.0"},"tags":[{"name":"Outbound Webhooks","description":"Outbound webhook subscriptions deliver Make platform events to customer-controlled HTTPS endpoints. These endpoints are proxied to the Outbound Webhooks service. Full schema documentation is available at https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json."}],"servers":[{"url":"https://eu1.make.com/api/v2","description":"EU1 production zone"},{"url":"https://eu2.make.com/api/v2","description":"EU2 production zone"},{"url":"https://us1.make.com/api/v2","description":"US1 production zone"},{"url":"https://us2.make.com/api/v2","description":"US2 production zone"},{"url":"https://eu1.make.celonis.com/api/v2","description":"Celonis EU1 production zone"},{"url":"https://us1.make.celonis.com/api/v2","description":"Celonis US1 production zone"}],"security":[{"token":["organizations:read"]}],"components":{"securitySchemes":{"token":{"type":"apiKey","name":"Authorization","in":"header","description":"Authorize the API call with your API token in the `Authorization` header with the value: `Token your-api-token`.\n\nIf you don't have an API token yet, please refer to the [\"Authentication\" section](/api-documentation/authentication) to learn how to create one.\n"}}},"paths":{"/outbound-webhooks/organizations/{organizationId}/webhooks":{"get":{"tags":["Outbound Webhooks"],"summary":"List outbound webhooks for an organization","description":"Returns the outbound webhook subscriptions belonging to the given organization. Endpoint is proxy for the Outbound Webhooks service. Full schema documentation is available at https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json","parameters":[{"name":"organizationId","in":"path","required":true,"schema":{"type":"integer","minimum":1},"description":"The unique ID of the organization that owns the webhooks."},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","minimum":1,"maximum":100,"default":20},"description":"Maximum number of webhooks to return."},{"name":"offset","in":"query","required":false,"schema":{"type":"integer","minimum":0,"default":0},"description":"Number of webhooks to skip for pagination."}],"responses":{"200":{"description":"Successful response."},"400":{"description":"Invalid query parameters."},"403":{"description":"Caller lacks permission on the organization."},"500":{"description":"Downstream error."}}}}}}
```

## Create an outbound webhook

> Registers a new outbound webhook subscription for the organization. The response includes a one-time \`signingSecret\` that is not retrievable later. Endpoint is proxy for the Outbound Webhooks service. Full schema documentation is available at <https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json>

```json
{"openapi":"3.0.0","info":{"title":"Web API v2 - Public ","version":"1.0.0"},"tags":[{"name":"Outbound Webhooks","description":"Outbound webhook subscriptions deliver Make platform events to customer-controlled HTTPS endpoints. These endpoints are proxied to the Outbound Webhooks service. Full schema documentation is available at https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json."}],"servers":[{"url":"https://eu1.make.com/api/v2","description":"EU1 production zone"},{"url":"https://eu2.make.com/api/v2","description":"EU2 production zone"},{"url":"https://us1.make.com/api/v2","description":"US1 production zone"},{"url":"https://us2.make.com/api/v2","description":"US2 production zone"},{"url":"https://eu1.make.celonis.com/api/v2","description":"Celonis EU1 production zone"},{"url":"https://us1.make.celonis.com/api/v2","description":"Celonis US1 production zone"}],"security":[{"token":["organizations:write"]}],"components":{"securitySchemes":{"token":{"type":"apiKey","name":"Authorization","in":"header","description":"Authorize the API call with your API token in the `Authorization` header with the value: `Token your-api-token`.\n\nIf you don't have an API token yet, please refer to the [\"Authentication\" section](/api-documentation/authentication) to learn how to create one.\n"}}},"paths":{"/outbound-webhooks/organizations/{organizationId}/webhooks":{"post":{"tags":["Outbound Webhooks"],"summary":"Create an outbound webhook","description":"Registers a new outbound webhook subscription for the organization. The response includes a one-time `signingSecret` that is not retrievable later. Endpoint is proxy for the Outbound Webhooks service. Full schema documentation is available at https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json","parameters":[{"name":"organizationId","in":"path","required":true,"schema":{"type":"integer","minimum":1},"description":"The unique ID of the organization that will own the webhook."}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["name","url"],"properties":{"name":{"type":"string","minLength":1,"maxLength":255,"description":"Human-readable name of the webhook."},"url":{"type":"string","format":"uri","description":"HTTPS URL that will receive webhook deliveries."}}}}}},"responses":{"201":{"description":"Webhook created."},"400":{"description":"Invalid request body (for example, a non-HTTPS URL)."},"403":{"description":"Caller lacks permission on the organization."},"500":{"description":"Downstream error."}}}}}}
```

## Get an outbound webhook

> Returns a single outbound webhook subscription belonging to the given organization. The \`signingSecret\` is not included in this response — it is only returned at creation time. Endpoint is proxy for the Outbound Webhooks service. Full schema documentation is available at <https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json>

```json
{"openapi":"3.0.0","info":{"title":"Web API v2 - Public ","version":"1.0.0"},"tags":[{"name":"Outbound Webhooks","description":"Outbound webhook subscriptions deliver Make platform events to customer-controlled HTTPS endpoints. These endpoints are proxied to the Outbound Webhooks service. Full schema documentation is available at https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json."}],"servers":[{"url":"https://eu1.make.com/api/v2","description":"EU1 production zone"},{"url":"https://eu2.make.com/api/v2","description":"EU2 production zone"},{"url":"https://us1.make.com/api/v2","description":"US1 production zone"},{"url":"https://us2.make.com/api/v2","description":"US2 production zone"},{"url":"https://eu1.make.celonis.com/api/v2","description":"Celonis EU1 production zone"},{"url":"https://us1.make.celonis.com/api/v2","description":"Celonis US1 production zone"}],"security":[{"token":["organizations:read"]}],"components":{"securitySchemes":{"token":{"type":"apiKey","name":"Authorization","in":"header","description":"Authorize the API call with your API token in the `Authorization` header with the value: `Token your-api-token`.\n\nIf you don't have an API token yet, please refer to the [\"Authentication\" section](/api-documentation/authentication) to learn how to create one.\n"}}},"paths":{"/outbound-webhooks/organizations/{organizationId}/webhooks/{webhookId}":{"get":{"tags":["Outbound Webhooks"],"summary":"Get an outbound webhook","description":"Returns a single outbound webhook subscription belonging to the given organization. The `signingSecret` is not included in this response — it is only returned at creation time. Endpoint is proxy for the Outbound Webhooks service. Full schema documentation is available at https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json","parameters":[{"name":"organizationId","in":"path","required":true,"schema":{"type":"integer","minimum":1},"description":"The unique ID of the organization that owns the webhook."},{"name":"webhookId","in":"path","required":true,"schema":{"type":"string","format":"uuid"},"description":"The unique ID of the webhook."}],"responses":{"200":{"description":"Successful response."},"403":{"description":"Caller lacks permission on the organization."},"404":{"description":"Webhook not found."},"500":{"description":"Downstream error."}}}}}}
```

## Delete an outbound webhook

> Permanently removes an outbound webhook subscription. The webhook stops receiving deliveries immediately. Endpoint is proxy for the Outbound Webhooks service. Full schema documentation is available at <https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json>

```json
{"openapi":"3.0.0","info":{"title":"Web API v2 - Public ","version":"1.0.0"},"tags":[{"name":"Outbound Webhooks","description":"Outbound webhook subscriptions deliver Make platform events to customer-controlled HTTPS endpoints. These endpoints are proxied to the Outbound Webhooks service. Full schema documentation is available at https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json."}],"servers":[{"url":"https://eu1.make.com/api/v2","description":"EU1 production zone"},{"url":"https://eu2.make.com/api/v2","description":"EU2 production zone"},{"url":"https://us1.make.com/api/v2","description":"US1 production zone"},{"url":"https://us2.make.com/api/v2","description":"US2 production zone"},{"url":"https://eu1.make.celonis.com/api/v2","description":"Celonis EU1 production zone"},{"url":"https://us1.make.celonis.com/api/v2","description":"Celonis US1 production zone"}],"security":[{"token":["organizations:write"]}],"components":{"securitySchemes":{"token":{"type":"apiKey","name":"Authorization","in":"header","description":"Authorize the API call with your API token in the `Authorization` header with the value: `Token your-api-token`.\n\nIf you don't have an API token yet, please refer to the [\"Authentication\" section](/api-documentation/authentication) to learn how to create one.\n"}}},"paths":{"/outbound-webhooks/organizations/{organizationId}/webhooks/{webhookId}":{"delete":{"tags":["Outbound Webhooks"],"summary":"Delete an outbound webhook","description":"Permanently removes an outbound webhook subscription. The webhook stops receiving deliveries immediately. Endpoint is proxy for the Outbound Webhooks service. Full schema documentation is available at https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json","parameters":[{"name":"organizationId","in":"path","required":true,"schema":{"type":"integer","minimum":1},"description":"The unique ID of the organization that owns the webhook."},{"name":"webhookId","in":"path","required":true,"schema":{"type":"string","format":"uuid"},"description":"The unique ID of the webhook."}],"responses":{"204":{"description":"Webhook deleted."},"403":{"description":"Caller lacks permission on the organization."},"404":{"description":"Webhook not found."},"500":{"description":"Downstream error."}}}}}}
```

## Update an outbound webhook

> Updates a mutable field on an outbound webhook subscription. Only the fields provided in the request body are changed. Endpoint is proxy for the Outbound Webhooks service. Full schema documentation is available at <https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json>

```json
{"openapi":"3.0.0","info":{"title":"Web API v2 - Public ","version":"1.0.0"},"tags":[{"name":"Outbound Webhooks","description":"Outbound webhook subscriptions deliver Make platform events to customer-controlled HTTPS endpoints. These endpoints are proxied to the Outbound Webhooks service. Full schema documentation is available at https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json."}],"servers":[{"url":"https://eu1.make.com/api/v2","description":"EU1 production zone"},{"url":"https://eu2.make.com/api/v2","description":"EU2 production zone"},{"url":"https://us1.make.com/api/v2","description":"US1 production zone"},{"url":"https://us2.make.com/api/v2","description":"US2 production zone"},{"url":"https://eu1.make.celonis.com/api/v2","description":"Celonis EU1 production zone"},{"url":"https://us1.make.celonis.com/api/v2","description":"Celonis US1 production zone"}],"security":[{"token":["organizations:write"]}],"components":{"securitySchemes":{"token":{"type":"apiKey","name":"Authorization","in":"header","description":"Authorize the API call with your API token in the `Authorization` header with the value: `Token your-api-token`.\n\nIf you don't have an API token yet, please refer to the [\"Authentication\" section](/api-documentation/authentication) to learn how to create one.\n"}}},"paths":{"/outbound-webhooks/organizations/{organizationId}/webhooks/{webhookId}":{"patch":{"tags":["Outbound Webhooks"],"summary":"Update an outbound webhook","description":"Updates a mutable field on an outbound webhook subscription. Only the fields provided in the request body are changed. Endpoint is proxy for the Outbound Webhooks service. Full schema documentation is available at https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json","parameters":[{"name":"organizationId","in":"path","required":true,"schema":{"type":"integer","minimum":1},"description":"The unique ID of the organization that owns the webhook."},{"name":"webhookId","in":"path","required":true,"schema":{"type":"string","format":"uuid"},"description":"The unique ID of the webhook."}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","minProperties":1,"properties":{"name":{"type":"string","minLength":1,"maxLength":255,"description":"Human-readable name of the webhook."},"url":{"type":"string","format":"uri","description":"HTTPS URL that will receive webhook deliveries."}}}}}},"responses":{"200":{"description":"Webhook updated."},"400":{"description":"Invalid request body."},"403":{"description":"Caller lacks permission on the organization."},"404":{"description":"Webhook not found."},"500":{"description":"Downstream error."}}}}}}
```

## Activate an outbound webhook

> Activates a previously paused outbound webhook subscription. The webhook's \`status\` becomes \`live\` on success. Endpoint is proxy for the Outbound Webhooks service. Full schema documentation is available at <https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json>

```json
{"openapi":"3.0.0","info":{"title":"Web API v2 - Public ","version":"1.0.0"},"tags":[{"name":"Outbound Webhooks","description":"Outbound webhook subscriptions deliver Make platform events to customer-controlled HTTPS endpoints. These endpoints are proxied to the Outbound Webhooks service. Full schema documentation is available at https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json."}],"servers":[{"url":"https://eu1.make.com/api/v2","description":"EU1 production zone"},{"url":"https://eu2.make.com/api/v2","description":"EU2 production zone"},{"url":"https://us1.make.com/api/v2","description":"US1 production zone"},{"url":"https://us2.make.com/api/v2","description":"US2 production zone"},{"url":"https://eu1.make.celonis.com/api/v2","description":"Celonis EU1 production zone"},{"url":"https://us1.make.celonis.com/api/v2","description":"Celonis US1 production zone"}],"security":[{"token":["organizations:write"]}],"components":{"securitySchemes":{"token":{"type":"apiKey","name":"Authorization","in":"header","description":"Authorize the API call with your API token in the `Authorization` header with the value: `Token your-api-token`.\n\nIf you don't have an API token yet, please refer to the [\"Authentication\" section](/api-documentation/authentication) to learn how to create one.\n"}}},"paths":{"/outbound-webhooks/organizations/{organizationId}/webhooks/{webhookId}/activate":{"patch":{"tags":["Outbound Webhooks"],"summary":"Activate an outbound webhook","description":"Activates a previously paused outbound webhook subscription. The webhook's `status` becomes `live` on success. Endpoint is proxy for the Outbound Webhooks service. Full schema documentation is available at https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json","parameters":[{"name":"organizationId","in":"path","required":true,"schema":{"type":"integer","minimum":1},"description":"The unique ID of the organization that owns the webhook."},{"name":"webhookId","in":"path","required":true,"schema":{"type":"string","format":"uuid"},"description":"The unique ID of the webhook."}],"responses":{"200":{"description":"Webhook activated."},"403":{"description":"Caller lacks permission on the organization."},"404":{"description":"Webhook not found."},"422":{"description":"Webhook is not linked to a delivery provider."},"503":{"description":"Provider sync error."}}}}}}
```

## Deactivate an outbound webhook

> Pauses an outbound webhook subscription. The webhook's \`status\` becomes \`paused\` on success and deliveries stop until the webhook is activated again. Endpoint is proxy for the Outbound Webhooks service. Full schema documentation is available at <https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json>

```json
{"openapi":"3.0.0","info":{"title":"Web API v2 - Public ","version":"1.0.0"},"tags":[{"name":"Outbound Webhooks","description":"Outbound webhook subscriptions deliver Make platform events to customer-controlled HTTPS endpoints. These endpoints are proxied to the Outbound Webhooks service. Full schema documentation is available at https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json."}],"servers":[{"url":"https://eu1.make.com/api/v2","description":"EU1 production zone"},{"url":"https://eu2.make.com/api/v2","description":"EU2 production zone"},{"url":"https://us1.make.com/api/v2","description":"US1 production zone"},{"url":"https://us2.make.com/api/v2","description":"US2 production zone"},{"url":"https://eu1.make.celonis.com/api/v2","description":"Celonis EU1 production zone"},{"url":"https://us1.make.celonis.com/api/v2","description":"Celonis US1 production zone"}],"security":[{"token":["organizations:write"]}],"components":{"securitySchemes":{"token":{"type":"apiKey","name":"Authorization","in":"header","description":"Authorize the API call with your API token in the `Authorization` header with the value: `Token your-api-token`.\n\nIf you don't have an API token yet, please refer to the [\"Authentication\" section](/api-documentation/authentication) to learn how to create one.\n"}}},"paths":{"/outbound-webhooks/organizations/{organizationId}/webhooks/{webhookId}/deactivate":{"patch":{"tags":["Outbound Webhooks"],"summary":"Deactivate an outbound webhook","description":"Pauses an outbound webhook subscription. The webhook's `status` becomes `paused` on success and deliveries stop until the webhook is activated again. Endpoint is proxy for the Outbound Webhooks service. Full schema documentation is available at https://github.com/integromat/outbound-webhooks/blob/master/openapi/openapi.json","parameters":[{"name":"organizationId","in":"path","required":true,"schema":{"type":"integer","minimum":1},"description":"The unique ID of the organization that owns the webhook."},{"name":"webhookId","in":"path","required":true,"schema":{"type":"string","format":"uuid"},"description":"The unique ID of the webhook."}],"responses":{"200":{"description":"Webhook deactivated."},"403":{"description":"Caller lacks permission on the organization."},"404":{"description":"Webhook not found."},"422":{"description":"Webhook is not linked to a delivery provider."},"503":{"description":"Provider sync error."}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://developers.make.com/white-label-documentation/admin-api-reference/outbound-webhooks.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
