ModifyAction Method
Description
Modifies an existing action. The action type cannot be modified for existing actions.
HTTP Request
PUT https://api.skeddly.com/api/Actions/{id}
URL Parameters
id
The ID of the action.
Type: string
Required: Yes
Body
The body is a JSON structure with the following properties.
comments
User notes for the action.
Type: string
Required: No
isEnabled
True to indicate that the action is executable. False otherwise.
Type: boolean
Required: No
Default: false
isTriggerBySns
True to indicate that the action should be triggerable by an SNS topic.
Type: boolean
Required: No
Default: false
name
Name of the action.
Type: string
Required: Yes
parameters
Additional action parameters specific to the action type.
Type: ActionParameters object.
Required: Yes
schedule
Schedule for the action.
Type: ActionSchedule object
Required: Yes
tags
Tags for the action.
Type: array of string
Required: No
Returns
An Action object.
Sample Request
Sample Response
Last updated