Skip to main content
GET
/
api
/
v1
/
mgt
/
workspaces
/
{workspaceId}
/
webhook-dead-letter
List Dead Letters
curl --request GET \
  --url https://api.xenia.team/api/v1/mgt/workspaces/{workspaceId}/webhook-dead-letter \
  --header 'x-client-key: <api-key>' \
  --header 'x-client-secret: <api-key>'
{
  "status": true,
  "code": 123,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "subscriptionId": "<string>",
      "eventId": "<string>",
      "eventType": "<string>",
      "payload": {},
      "lastAttemptAt": "2023-11-07T05:31:56Z",
      "attemptCount": 123,
      "lastError": "<string>",
      "expiresAt": "2023-11-07T05:31:56Z",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "total": 123,
    "limit": 123,
    "offset": 123
  }
}

Authorizations

x-client-key
string
header
required
x-client-secret
string
header
required

Path Parameters

workspaceId
string<uuid>
required

Workspace ID

Query Parameters

subscriptionId
string<uuid>

Filter by subscription ID

eventType
string

Filter by event type

includeExpired
boolean
default:false

Include expired entries

limit
integer
default:50

Number of results

Required range: x <= 100
offset
integer
default:0

Results to skip

Response

Dead letters retrieved successfully

status
boolean
code
integer
data
object[]
pagination
object