---
title: "List Webhook Callbacks"
method: GET
path: "/v1/companies/{company_id}/webhook-callbacks"
tags: ["Webhooks"]
---

# List Webhook Callbacks

`GET /v1/companies/{company_id}/webhook-callbacks`

List callbacks for a given company

## Scopes

| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage company resources (`company_admin`) | View webhooks (`webhook:read`) | Manage webhooks (`webhook:write`) |

## Path parameters

- `company_id` string, required

## Response `200`

Success

- ListWebhookCallbacksResponse
  - `data` WebhookCallback[], required
    - `id` string, required — The unique identifier (UUID) of the webhook callback.
    - `signing_key` string — This key will be used to sign the signature provided with webhook requests we send to the `url` you provided for this webhook callback. The webhook signature will be included in a custom header, `X-Remote-Signature`. You can use this signature to verify that requests are coming from Remote and not some unauthorized third-party.
    - `subscribe_to_all_events` boolean — When true, this callback is subscribed to all current and future event types. `subscribed_events` then lists every currently supported event.
    - `subscribed_events` string[]
    - `url` string, required — The HTTPS URL where Remote will send webhook event payloads.

## Other responses

- `401` — Unauthorized
- `404` — Not Found

---

[API](https://skmtc.net/remote-com/apis/remote.md) · [All operations](https://skmtc.net/remote-com/apis/remote/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/remote-com/remote/revisions/7e6a0c61ac82/schema)
