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

# Get Webhook Details

> Returns details for a specific webhook endpoint

## Request Parameters

### Path Parameters

<ParamField path="id" type="string" required>
  Webhook endpoint ID
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X GET \
    'https://platform.returnqueen.dev/api/partner_webhooks/ep_2KtRQ8fTStWPKrXP' \
    -H 'X-API-KEY: your-api-key'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "id": "ep_2KtRQ8fTStWPKrXP",
    "url": "https://example.com/webhook",
    "filterTypes": ["shipment.created", "shipment.address.updated", "pickup.completed"],
    "active": true,
    "created_at": "2024-01-15T10:00:00Z",
    "description": "Production webhook endpoint",
    "secret": "whsec_MfKQ9r8GKYqrTwjUPD8ILPZIo2LaLaSw"
  }
  ```
</ResponseExample>

## Response Fields

<ResponseField name="id" type="string">
  Unique identifier for the webhook endpoint
</ResponseField>

<ResponseField name="url" type="string">
  HTTPS URL where webhook events are sent
</ResponseField>

<ResponseField name="filterTypes" type="array">
  Event types this endpoint is subscribed to (empty array means all events)
</ResponseField>

<ResponseField name="active" type="boolean">
  Whether the endpoint is active
</ResponseField>

<ResponseField name="created_at" type="string">
  When the endpoint was created (ISO 8601 format)
</ResponseField>

<ResponseField name="description" type="string">
  Description of the webhook endpoint
</ResponseField>

<ResponseField name="secret" type="string">
  Webhook signing secret (only shown once during creation)
</ResponseField>
