# place.stream.server.getWebhook

> Published by [did:web:longos.iameli.link](https://lexicon.garden/identity/did:web:longos.iameli.link)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.server.getWebhook)
- [Documentation](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.server.getWebhook/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.server.getWebhook/examples)

## Definitions

### `place.stream.server.getWebhook`

**Type**: `query`

Get details for a specific webhook.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | Yes | The ID of the webhook to retrieve. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `webhook` | `ref` → `place.stream.server.defs#webhook` | Yes |  |

#### Errors

- **WebhookNotFound**: The specified webhook was not found.
- **Unauthorized**: The authenticated user does not have access to this webhook.

## Raw Schema

```json
{
  "id": "place.stream.server.getWebhook",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "WebhookNotFound",
          "description": "The specified webhook was not found."
        },
        {
          "name": "Unauthorized",
          "description": "The authenticated user does not have access to this webhook."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "webhook"
          ],
          "properties": {
            "webhook": {
              "ref": "place.stream.server.defs#webhook",
              "type": "ref"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "id"
        ],
        "properties": {
          "id": {
            "type": "string",
            "description": "The ID of the webhook to retrieve."
          }
        }
      },
      "description": "Get details for a specific webhook."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
