# Get webhook queue details Retrieves the details of the dedicated dynamic queue associated with a specific webhook ID. This queue is used to temporarily store failed event notifications for subsequent retry attempts, ensuring delivery resilience. Endpoint: GET /webhooks/dynamic-queues/{webhookId} Version: 1.0 ## Header parameters: - `x-api-key` (string, required) Api key provided on integrations tab in Easyflow platform. - `x-api-secret` (string, required) Api Secret provided on integrations tab in Easyflow platform. ## Path parameters: - `webhookId` (string, required) The unique identifier of the webhook whose queue details are to be retrieved. Example: "692f3483106ee1344d9aa243" ## Response 200 fields (application/json): - `statusCode` (integer) Example: 200 - `data` (object) - `data.id` (string) The unique identifier of the dynamic queue. Example: "692f3483106ee1344d9aa23f" - `data.name` (string) The name of the queue. Example: "easy_internal_wb_af965c2a-5075-4d72-993d-aeac1a7b4aa6_queue" - `data.status` (string) The current operational status of the queue. Enum: "active", "inactive", "paused" - `data.createdAt` (string) Timestamp when the queue was created. Example: "2025-12-02T18:48:35.097Z" - `data.updatedAt` (string) Timestamp of the last update to the queue. Example: "2025-12-02T18:48:35.097Z" - `data.messagesAvailable` (integer) The number of messages currently waiting in the queue for processing or retry. ## Response 400 fields (application/json): - `message` (string) Invalid param: [] Example: "Invalid param: []" - `error` (string) Bad Request Example: "Bad Request" - `statusCode` (integer) 400 Example: 400 ## Response 401 fields (application/json): - `message` (string) Invalid field Example: "Unauthorized" - `error` (string) Unauthorized Example: "Unauthorized" - `statusCode` (integer) 401 Example: 401 ## Response 403 fields (application/json): - `message` (string) Forbidden resource Example: "Forbidden resource" - `error` (string) Forbidden Example: "Forbidden" - `statusCode` (integer) 403 Example: 403 ## Response 500 fields (application/json): - `message` (string) Internal server error Example: "Internal server error" - `error` (string) Internal Server Error Example: "Internal Server Error" - `statusCode` (integer) 500 Example: 500