> ## Documentation Index
> Fetch the complete documentation index at: https://adp-doc.laiye.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 重新运行工作流

> 根据历史运行记录重新触发一次工作流运行。接口会复用原运行的应用、版本和输入，并创建新的异步运行任务。



## OpenAPI

````yaml /api-reference/adp-api.yaml post /open/agentic_engine/laiye/v1/app/run/{run_id}/rerun
openapi: 3.1.0
info:
  title: ADP API
  version: 1.0.0
  description: Laiye ADP 官方 OpenAPI 接口规范，覆盖文档抽取、文档解析、抽取应用管理、积分查询、工作流运行和工作流文件管理。
  license:
    name: MIT
    identifier: MIT
servers:
  - url: https://adp.laiye.com
    description: ADP 生产环境
security: []
tags:
  - name: 文档抽取
    description: 从上传的文档中抽取结构化字段。
  - name: 文档解析
    description: 识别上传文档中的文字、版面块和位置信息。
  - name: 应用管理
    description: 创建、修改、删除和查询抽取应用及配置。
  - name: 账户
    description: 查询账户积分和使用情况。
  - name: 工作流
    description: 运行工作流应用并查询执行结果。
  - name: 工作流文件
    description: 上传和管理工作流应用使用的文件。
paths:
  /open/agentic_engine/laiye/v1/app/run/{run_id}/rerun:
    post:
      tags:
        - 工作流
      summary: 重新运行工作流
      description: 根据历史运行记录重新触发一次工作流运行。接口会复用原运行的应用、版本和输入，并创建新的异步运行任务。
      operationId: rerunDocFlowRunTask
      parameters:
        - $ref: '#/components/parameters/RunId'
      responses:
        '200':
          $ref: '#/components/responses/DocFlowRunResponse'
        '422':
          $ref: '#/components/responses/ValidationError'
      security:
        - EngineApiKeyAuth: []
components:
  parameters:
    RunId:
      name: run_id
      in: path
      required: true
      description: 运行 ID。
      schema:
        type: string
  responses:
    DocFlowRunResponse:
      description: 工作流运行结果。
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/DocFlowRunResponse'
          example:
            code: success
            message: ''
            data:
              run_id: run_xyz789
              status: succeeded
              output:
                result: 采购单分析完成
              error: null
              started_at: '2026-04-30T10:00:00Z'
              ended_at: '2026-04-30T10:00:15Z'
    ValidationError:
      description: 参数校验错误。
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/SimpleResponse'
  schemas:
    DocFlowRunResponse:
      allOf:
        - $ref: '#/components/schemas/SimpleResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                run_id:
                  type: string
                status:
                  type: string
                  enum:
                    - pending
                    - running
                    - succeeded
                    - failed
                    - cancelled
                    - paused
                    - timeout
                output:
                  type:
                    - object
                    - 'null'
                  additionalProperties: true
                error:
                  type:
                    - string
                    - 'null'
                started_at:
                  type: string
                  format: date-time
                ended_at:
                  type:
                    - string
                    - 'null'
                  format: date-time
    SimpleResponse:
      type: object
      properties:
        code:
          oneOf:
            - type: string
            - type: integer
          description: 业务码。成功通常为 success 或 200。
        message:
          type: string
          description: 返回信息。
        tips:
          type:
            - string
            - 'null'
          description: 详细信息，默认为空。
  securitySchemes:
    EngineApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: 工作流智能引擎 API 访问密钥。

````