List live and replay execution diagnostics.
const url = 'https://api.dev.iot-sens.schlossers.at/v1/tenants/1/flow-executions?status=queued&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-executions?status=queued&limit=25' \ --header 'Authorization: Bearer <token>'Returns reverse-chronological pages without an exact total. The first
request fixes to as the investigation anchor. Continuations reuse
that 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”Query Parameters
Section titled “Query Parameters”Optional inclusive lower timestamp for the investigation.
Fixed exclusive upper anchor; defaults to current server time and continuations reuse it.
Historical Organization assignment at the Execution timestamp.
Opaque continuation token; reuse the original filters and scope.
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 Flow Execution page.
object
object
Example
{ "items": [ { "mode": "live", "status": "queued" } ]}default
Section titled “default”A safe platform error response.
object
object
Example
{ "error": { "code": "VALIDATION_FAILED", "category": "validation" }}