Files
n8n-docs/docs/api/openapi-yaml/spec/paths/ExecutionById.yml
2022-05-05 11:50:04 +01:00

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'