mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-10 12:27:48 +00:00
30 lines
761 B
YAML
30 lines
761 B
YAML
delete:
|
|
operationId: deleteScheduledActions
|
|
tags:
|
|
- SP-Scheduler
|
|
summary: Delete Scheduled Actions
|
|
description: >-
|
|
This deletes a scheduled action by id
|
|
parameters:
|
|
- in: path
|
|
name: id
|
|
schema:
|
|
type: string
|
|
required: true
|
|
description: The scheduled action id
|
|
example: 0f11f2a4-7c94-4bf3-a2bd-742580fe3bde
|
|
responses:
|
|
'204':
|
|
$ref: '../../v3/responses/204.yaml'
|
|
description: The scheduled action was successfully deleted.
|
|
'401':
|
|
$ref: '../../v3/responses/401.yaml'
|
|
'403':
|
|
$ref: '../../v3/responses/403.yaml'
|
|
'404':
|
|
$ref: '../../v3/responses/404.yaml'
|
|
'429':
|
|
$ref: '../../v3/responses/429.yaml'
|
|
'500':
|
|
$ref: '../../v3/responses/500.yaml'
|