Skip to content
SENS Platform Docs

List persistent flow and Action Dead Letters.

GET
/v1/tenants/{tenantNumber}/flow-dead-letters
curl --request GET \
--url 'https://api.dev.iot-sens.schlossers.at/v1/tenants/1/flow-dead-letters?status=open&limit=25' \
--header 'Authorization: Bearer <token>'

Returns reverse-chronological pages without an exact total. The first request fixes to; continuations keep the anchor, Tenant scope, every filter, and the requested page size. The API defaults to 25 and accepts 1 through 100; the Web Console requests 25 per explicit load.

tenantNumber
required
integer format: int32
>= 1 <= 2147483647
from
string format: date-time

Optional inclusive lower timestamp for the investigation.

to
string format: date-time

Fixed exclusive upper anchor; defaults to current server time and continuations reuse it.

flowId
string format: uuid
organizationUnitId
string format: uuid

Historical Organization assignment at the Execution timestamp.

status
string
Allowed values: open redriven resolved
cursor
string
<= 512 characters

Opaque continuation token; reuse the original filters and scope.

limit
integer
default: 25 >= 1 <= 100

Number of timeline records to return; defaults to 25, accepts 1 through 100, and is bound into continuation cursors.

Anchored progressive Tenant-isolated Dead Letter page.

Media typeapplication/json
object
items
required
Array<object>
object
flowDeadLetterId
required
string format: uuid
tenantId
required
string format: uuid
sourceKind
required
string
Allowed values: flow_execution flow_action
flowExecutionId
required
string format: uuid
flowActionId
required
string | null format: uuid
errorCode
required
string
errorMessage
required
string
<= 1000 characters
attemptCount
required
integer
>= 1
status
required
string
Allowed values: open redriven resolved
redriveCount
required
integer
lockVersion
required
integer
>= 1
createdAt
required
string format: date-time
key
additional properties
any
nextCursor
string
Example
{
"items": [
{
"sourceKind": "flow_execution",
"status": "open"
}
]
}

A safe platform error response.

Media typeapplication/json
object
error
required
object
code
required
string
Allowed values: VALIDATION_FAILED AUTHENTICATION_FAILED AUTHORIZATION_FAILED RESOURCE_NOT_FOUND CONFLICT DEPENDENCY_FAILURE FLOW_FAILURE RATE_LIMITED INTERNAL_ERROR
category
required
string
Allowed values: validation authentication authorization not_found conflict dependency_failure flow_failure rate_limit internal
message
required

Safe client-facing diagnostic message.

string
correlationId
required

Correlation ID for operational investigation.

string
>= 1 characters
details

Safe bounded diagnostic details.

object
key
additional properties
One of:
string
Example
{
"error": {
"code": "VALIDATION_FAILED",
"category": "validation"
}
}
Cache-Control
string
Allowed value: no-store