List workflows in the authenticated org.
List workflows in the authenticated org. - Rensei REST API operation reference.
Rensei API key presented as Authorization: Bearer rsk_live_. Required API-key scopes are recorded per operation in x-rensei-required-scopes.
In: header
Query Parameters
'org' | 'project'
Filter to workflows invoking the given group slug.
Response Body
application/json
curl -X GET "https://example.com/api/workflows"{
"workflows": [
{
"id": "string",
"workspaceId": "string",
"orgId": "string",
"projectId": "string",
"name": "string",
"description": "string",
"status": "string",
"nodes": [
null
],
"edges": [
null
],
"viewport": null,
"definitionYaml": "string",
"createdBy": "string",
"createdAt": "string",
"updatedAt": "string",
"projectScope": [
"string"
],
"archivedAt": "string",
"brokenReason": null
}
]
}Inbound webhook from incident.io
Dedicated ingest endpoint for incident.io webhooks. Streams the exact provider-signed bytes under a hard 1 MiB cap before strictly decoding UTF-8. Validates the Svix `webhook-id`, `webhook-timestamp`, and `webhook-signature` headers, including a five-minute replay window, and routes only when exactly one connected per-org encrypted signing secret matches. Handles `incident.created`, `incident.updated`, and `incident.resolved` events. Unknown event types return `{ ok: true, skipped: true }`. Missing, stale, malformed, duplicate, undecryptable, or over-cap candidate state fails closed with 401. `WEBHOOK_SECRET_INCIDENT_IO` is a bounded legacy fallback for exactly one connected env-only row and is never an alternate key for connected per-org rows.
Create a workflow.
Create a workflow. - Rensei REST API operation reference.