> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Luma: Get V1 Webhooks List

> List all webhook endpoints for the calendar. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

List all webhook endpoints for the calendar.

<Info>
  Tool ID: `luma_get_v1_webhooks_list`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'luma_get_v1_webhooks_list',
  {
    "pagination_cursor": "cursor_123",
    "pagination_limit": 123
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute luma_get_v1_webhooks_list --input '{
  "pagination_cursor": "cursor_123",
  "pagination_limit": 123
}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": {
    "entries": [
      {
        "id": "id_123",
        "url": "https://example.com",
        "event_types": [
          "*"
        ],
        "status": "active",
        "secret": "example",
        "created_at": "2026-01-15T12:00:00Z"
      }
    ],
    "has_more": true
  }
}
```

Use `deepline tools get luma_get_v1_webhooks_list --json` for the latest machine-readable contract.

## Input reference

List all webhook endpoints for the calendar.

| Name                        | Type     | Required | Default | Details                                                                  |
| --------------------------- | -------- | -------- | ------- | ------------------------------------------------------------------------ |
| `payload.pagination_cursor` | `string` | No       | —       | Value of `next_cursor` from a previous request.                          |
| `payload.pagination_limit`  | `number` | No       | —       | The number of items to return. The server will enforce a maximum number. |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "List all webhook endpoints for the calendar.",
    "properties": {
      "pagination_cursor": {
        "type": "string",
        "description": "Value of `next_cursor` from a previous request."
      },
      "pagination_limit": {
        "type": "number",
        "description": "The number of items to return. The server will enforce a maximum number."
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                | Type                   | Required | Default | Details                                                                       |
| ----------------------------------- | ---------------------- | -------- | ------- | ----------------------------------------------------------------------------- |
| `result.data`                       | `object`               | Yes      | —       | Provider response payload.                                                    |
| `result.data.entries`               | `array`                | Yes      | —       | —                                                                             |
| `result.data.entries[].id`          | `string`               | Yes      | —       | —                                                                             |
| `result.data.entries[].url`         | `string`               | Yes      | —       | —                                                                             |
| `result.data.entries[].event_types` | `array`                | Yes      | —       | —                                                                             |
| `result.data.entries[].status`      | `"active" \| "paused"` | Yes      | —       | Allowed: `active`, `paused`.                                                  |
| `result.data.entries[].secret`      | `string`               | Yes      | —       | —                                                                             |
| `result.data.entries[].created_at`  | `string`               | Yes      | —       | ISO 8601 Datetime. For example, 2022-10-19T03:27:13.673Z Format: `date-time`. |
| `result.data.has_more`              | `boolean`              | Yes      | —       | —                                                                             |
| `result.data.next_cursor`           | `string`               | No       | —       | —                                                                             |
| `result.meta`                       | `object`               | No       | —       | Additional response metadata (status, paging).                                |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Provider response payload.",
        "properties": {
          "entries": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string"
                },
                "url": {
                  "type": "string"
                },
                "event_types": {
                  "type": "array",
                  "items": {
                    "type": "string",
                    "enum": [
                      "*",
                      "calendar.event.added",
                      "calendar.event.submitted",
                      "calendar.person.subscribed",
                      "calendar.person.unsubscribed",
                      "event.canceled",
                      "event.created",
                      "event.updated",
                      "guest.registered",
                      "guest.refunded",
                      "guest.updated",
                      "ticket.registered"
                    ]
                  }
                },
                "status": {
                  "type": "string",
                  "enum": [
                    "active",
                    "paused"
                  ]
                },
                "secret": {
                  "type": "string"
                },
                "created_at": {
                  "type": "string",
                  "description": "ISO 8601 Datetime. For example, 2022-10-19T03:27:13.673Z",
                  "format": "date-time"
                }
              },
              "required": [
                "id",
                "url",
                "event_types",
                "status",
                "secret",
                "created_at"
              ],
              "additionalProperties": false
            }
          },
          "has_more": {
            "type": "boolean"
          },
          "next_cursor": {
            "type": "string"
          }
        },
        "required": [
          "entries",
          "has_more"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

* [Luma provider guide](/docs/providers/luma/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
