mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2026-03-27 09:28:43 +07:00
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
get:
|
|
x-eov-operation-id: getExecution
|
|
x-eov-operation-handler: v1/handlers/executions
|
|
tags:
|
|
- Execution
|
|
summary: Retrieve an execution
|
|
description: Retrieve an execution from you instance.
|
|
parameters:
|
|
- $ref: '../parameters/ExecutionId.yml'
|
|
responses:
|
|
'200':
|
|
description: Operation successful.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/ExecutionInformation.yml'
|
|
'401':
|
|
$ref: '../responses/Unauthorized.yml'
|
|
'404':
|
|
$ref: '../responses/NotFound.yml'
|
|
delete:
|
|
x-eov-operation-id: deleteExecution
|
|
x-eov-operation-handler: v1/handlers/executions
|
|
tags:
|
|
- Execution
|
|
summary: Delete an execution
|
|
description: Deletes an execution from your instance.
|
|
parameters:
|
|
- $ref: '../parameters/ExecutionId.yml'
|
|
responses:
|
|
'200':
|
|
description: Operation successful.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/ExecutionInformation.yml'
|
|
'401':
|
|
$ref: '../responses/Unauthorized.yml'
|
|
'404':
|
|
$ref: '../responses/NotFound.yml'
|