> ## Documentation Index
> Fetch the complete documentation index at: https://flows-docs.edges.run/llms.txt
> Use this file to discover all available pages before exploring further.

# Resume Flow Run

> Resume a paused or blocked flow run

Resume a flow run that has been paused or is in a `BLOCKED` status.
This is useful when a flow run requires manual intervention or when you want to restart processing after resolving an issue.

**Use Cases**:

* Resume a flow that was paused due to rate limiting
* Restart a blocked flow after resolving dependency issues
* Continue processing after manual review

**Resumable Statuses**:
A flow run can only be resumed if it's in one of these states:

* `BLOCKED` - Flow is waiting for resources or dependencies
* `STOPPED` - Flow was manually stopped

<Note>
  Resuming a flow run will return the updated flow run object with its new status. The flow will continue from where it left off.
</Note>


## OpenAPI

````yaml POST /flows/runs/{flow_run_uid}/resume
openapi: 3.1.0
info:
  title: ED Automation Flows API
  description: This is the Flows API documentation for ED Automation
  version: dev
servers:
  - url: https://api.edges.run/v1
security:
  - XApiKeyAuth: []
paths:
  /flows/runs/{flow_run_uid}/resume:
    post:
      tags:
        - flows
      summary: Resume a flow run
      operationId: resumeFlowRun
      parameters:
        - schema:
            type: string
            format: uuid
          in: path
          name: flow_run_uid
          required: true
          description: Flow run UUID
      responses:
        '200':
          description: Returns the flow run
          content:
            application/json:
              schema:
                description: Returns the flow run
                type: object
                properties:
                  uid:
                    type: string
                    format: uuid
                    description: Flow Run UUID
                  user_uid:
                    type: string
                    format: uuid
                    description: Member/User UUID
                  workspace_uid:
                    type: string
                    format: uuid
                    description: Workspace UUID
                  last_error:
                    type: object
                    description: Last error message
                    properties:
                      label:
                        type: string
                        description: Label
                      message:
                        type: string
                        description: Message
                    nullable: true
                  callback:
                    type: object
                    description: Callback
                    properties:
                      url:
                        type: string
                        description: Callback URL
                    nullable: true
                  status:
                    type: string
                    description: Flow Run status
                    enum:
                      - CREATED
                      - INVALID
                      - QUEUED
                      - SCHEDULED
                      - BLOCKED
                      - STOPPED
                      - RUNNING
                      - FAILED
                      - PARTIAL_SUCCEEDED
                      - SUCCEEDED
                    nullable: true
                  output_count:
                    type: integer
                    description: >-
                      Number of outputs generated by the flow run (only
                      available when the flow run is finished)
                    default: 0
                    nullable: true
                  scheduled_flow_run_uid:
                    type: string
                    format: uuid
                    description: >-
                      If the flow run is scheduled, this field indicates the
                      scheduled flow run UUID.
                    nullable: true
                  started_at:
                    type: string
                    description: Started at
                    nullable: true
                  finished_at:
                    type: string
                    description: Finished at
                    nullable: true
                  created_at:
                    type: string
                    description: Created at
                  updated_at:
                    type: string
                    description: Updated at
                    nullable: true
                additionalProperties: false
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/def-0'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/def-0'
components:
  schemas:
    def-0:
      title: APIError
      description: >-
        Represents an error returned by the API. This schema defines the
        standard structure of error messages to ensure consistent error handling
        across the application.
      type: object
      properties:
        error_label:
          type: string
          nullable: true
        error_scope:
          type: string
          enum:
            - input
            - integ
            - param
            - config
          nullable: true
        error_ref:
          type: string
          nullable: true
          example: ERR-12345
        message:
          type: string
        status_code:
          type: integer
          nullable: true
        params:
          type: object
          additionalProperties:
            anyOf:
              - type: string
              - type: number
              - type: boolean
              - type: 'null'
              - type: array
                items:
                  type: string
          nullable: true
        data:
          type: object
          nullable: true
          additionalProperties: true
          description: Additional data about the error
      additionalProperties: false
  securitySchemes:
    XApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````