mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2025-11-20 17:48:34 +00:00
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
get:
|
|
x-eov-operation-id: getExecutions
|
|
x-eov-operation-handler: v1/handlers/executions/executions.handler
|
|
tags:
|
|
- Execution
|
|
summary: Retrieve all executions
|
|
description: Retrieve all executions from your instance.
|
|
parameters:
|
|
- $ref: '../schemas/parameters/includeData.yml'
|
|
- name: status
|
|
in: query
|
|
description: Status to filter the executions by.
|
|
required: false
|
|
schema:
|
|
type: string
|
|
enum: ['error', 'success', 'waiting']
|
|
- name: workflowId
|
|
in: query
|
|
description: Workflow to filter the executions by.
|
|
required: false
|
|
schema:
|
|
type: string
|
|
example: '1000'
|
|
- $ref: '../../../../shared/spec/parameters/limit.yml'
|
|
- $ref: '../../../../shared/spec/parameters/cursor.yml'
|
|
responses:
|
|
'200':
|
|
description: Operation successful.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/executionList.yml'
|
|
'401':
|
|
$ref: '../../../../shared/spec/responses/unauthorized.yml'
|
|
'404':
|
|
$ref: '../../../../shared/spec/responses/notFound.yml'
|