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

# Get Dead Letter

> Returns detailed information about a specific dead letter entry including the full payload.



## OpenAPI

````yaml GET /api/v1/mgt/workspaces/{workspaceId}/webhook-dead-letter/{id}
openapi: 3.1.0
info:
  title: Xenia Team API - Get Dead Letter
  version: 1.0.0
  description: Retrieve details of a specific dead letter entry.
servers:
  - url: https://api.xenia.team
security: []
paths:
  /api/v1/mgt/workspaces/{workspaceId}/webhook-dead-letter/{id}:
    get:
      tags:
        - Webhooks
      summary: Get Dead Letter
      description: >-
        Returns detailed information about a specific dead letter entry
        including the full payload.
      parameters:
        - name: workspaceId
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Workspace ID
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Dead letter ID
      responses:
        '200':
          description: Dead letter retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: boolean
                  code:
                    type: integer
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      subscriptionId:
                        type: string
                      subscriptionName:
                        type: string
                      eventId:
                        type: string
                      eventType:
                        type: string
                      payload:
                        type: object
                      url:
                        type: string
                      attemptCount:
                        type: integer
                      lastAttemptAt:
                        type: string
                        format: date-time
                      lastError:
                        type: string
                      lastResponseStatus:
                        type: integer
                      expiresAt:
                        type: string
                        format: date-time
                      createdAt:
                        type: string
                        format: date-time
        '401':
          description: Unauthorized
        '404':
          description: Dead letter not found
      security:
        - clientKey: []
          clientSecret: []
components:
  securitySchemes:
    clientKey:
      type: apiKey
      in: header
      name: x-client-key
    clientSecret:
      type: apiKey
      in: header
      name: x-client-secret

````