List persistent flow and Action Dead Letters.
GET
/v1/tenants/{tenantNumber}/flow-dead-letters
const url = 'https://api.dev.iot-sens.schlossers.at/v1/tenants/1/flow-dead-letters?status=open&limit=25';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”tenantNumber
required
integer format: int32
Query Parameters
Section titled “Query Parameters”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
cursor
string
Opaque continuation token; reuse the original filters and scope.
limit
integer
Number of timeline records to return; defaults to 25, accepts 1 through 100, and is bound into continuation cursors.
Responses
Section titled “Responses”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
flowExecutionId
required
string format: uuid
flowActionId
required
string | null format: uuid
errorCode
required
string
errorMessage
required
string
attemptCount
required
integer
status
required
string
redriveCount
required
integer
lockVersion
required
integer
createdAt
required
string format: date-time
key
additional properties
any
nextCursor
string
Example
{ "items": [ { "sourceKind": "flow_execution", "status": "open" } ]}default
Section titled “default”A safe platform error response.
Media typeapplication/json
object
error
required
object
Example
{ "error": { "code": "VALIDATION_FAILED", "category": "validation" }}Headers
Section titled “Headers”Cache-Control
string