events.iterate.com

Event type

events.iterate.com/project/human-approval-rejected

A held egress request was refused — by a human, or automatically when its hold expired. Rejections are deliberately unsigned: deny is the fail-safe direction.

Payload schema

approvalRequestEventOffsetinteger

The held request's identity: the offset of its human-approval-requested event.

reason"human" | "expired"

Who refused: a human, or the hold's timeout.

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "approvalRequestEventOffset": {
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991,
      "description": "The held request's identity: the offset of its human-approval-requested event."
    },
    "reason": {
      "type": "string",
      "enum": [
        "human",
        "expired"
      ],
      "description": "Who refused: a human, or the hold's timeout."
    }
  },
  "required": [
    "approvalRequestEventOffset",
    "reason"
  ]
}