--- title: "Resolve interrupt" description: "Submit user response to resolve a pending interrupt.\nThe value type depends on the interrupt type:\n- confirmation: boolean (true = confirmed)\n- choice: string or string[] (selected values)\n- text: string (user input)\n- form: object (form data matching schema)\n" source: https://flowdrop.io/docs/api/interrupts/resolveInterrupt site: FlowDrop documentation --- # Resolve interrupt `POST /interrupts/{interruptId}` Submit user response to resolve a pending interrupt. The value type depends on the interrupt type: - confirmation: boolean (true = confirmed) - choice: string or string[] (selected values) - text: string (user input) - form: object (form data matching schema) ## Parameters - `interruptId` · in path · string · required — Interrupt UUID ## Request body - `application/json` — InterruptResolveRequest ## Responses - `200` — Interrupt resolved successfully (`application/json`: InterruptResponse) - `400` — Bad request - invalid parameters or request body (`application/json`: ErrorResponse) - `404` — Resource not found (`application/json`: ErrorResponse) - `409` — Interrupt already resolved or cancelled (`application/json`: ErrorResponse) - `500` — Internal server error (`application/json`: ErrorResponse) *Tags: Interrupts*