Queue an idempotent replay pinned to a released or deprecated version.
POST
/v1/raw-ingestion-messages/{rawIngestionMessageId}/replays
const url = 'https://api.dev.iot-sens.schlossers.at/v1/raw-ingestion-messages/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/replays?receivedAt=2026-04-15T12%3A00%3A00Z';const options = { method: 'POST', headers: { 'Idempotency-Key': 'example', Authorization: 'Bearer <token>', 'Content-Type': 'application/json' }, body: '{"flowVersionId":"2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url 'https://api.dev.iot-sens.schlossers.at/v1/raw-ingestion-messages/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/replays?receivedAt=2026-04-15T12%3A00%3A00Z' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --header 'Idempotency-Key: example' \ --data '{ "flowVersionId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" }'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”rawIngestionMessageId
required
string format: uuid
Query Parameters
Section titled “Query Parameters”receivedAt
required
string format: date-time
Exact receive timestamp forming the second part of the hypertable key.
Header Parameters
Section titled “Header Parameters”Idempotency-Key
required
string
Request Body
Section titled “Request Body”Media typeapplication/json
object
flowVersionId
string format: uuid
Examplegenerated
{ "flowVersionId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"}Responses
Section titled “Responses”Queued replay execution; repeated idempotency keys return the same execution.
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