Actions
Get all Actions in a configuration
Path parameters
configstringRequired
Responses
200
Actions retrieved successfully
application/json
422
Validation Error
application/json
get
GET /api/v4.0/conf/{config}/actions HTTP/1.1
Host:
Accept: */*
{
"total": 1,
"items": [
{
"description": "text",
"id": "text",
"name": "text",
"params": {
"content": "",
"headers": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"status": 1
},
"tags": [
"text"
],
"type": "skip"
}
]
}
Update an existing set of Actions for a configuration
Path parameters
configstringRequired
Bodyobject · Action[]
descriptionstringOptional
idstringRequired
namestring · min: 1Required
paramsany ofOptionalDefault:
{}
or
objectOptional
tagsstring[]OptionalDefault:
List of tags to apply
[]
typeall ofRequired
Need to be one of predefined strings
string · enumOptionalPossible values:
Responses
200
Actions updated successfully
application/json
422
Validation Error
application/json
put
PUT /api/v4.0/conf/{config}/actions HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 160
[
{
"description": "text",
"id": "text",
"name": "text",
"params": {
"content": "",
"headers": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"status": 1
},
"tags": [
"text"
],
"type": "skip"
}
]
{
"message": "Successfully updated entry"
}
Create complete set of Actions for a configuration
Path parameters
configstringRequired
Bodyobject · Action[]
descriptionstringOptional
idstringRequired
namestring · min: 1Required
paramsany ofOptionalDefault:
{}
or
objectOptional
tagsstring[]OptionalDefault:
List of tags to apply
[]
typeall ofRequired
Need to be one of predefined strings
string · enumOptionalPossible values:
Responses
201
Actions created successfully
application/json
422
Validation Error
application/json
post
POST /api/v4.0/conf/{config}/actions HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 160
[
{
"description": "text",
"id": "text",
"name": "text",
"params": {
"content": "",
"headers": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"status": 1
},
"tags": [
"text"
],
"type": "skip"
}
]
{
"message": "Successfully created entry"
}
Get an individual Action from the specified configuration
Path parameters
configstringRequired
entry_idstringRequired
Responses
200
Action retrieved successfully
application/json
422
Validation Error
application/json
get
GET /api/v4.0/conf/{config}/actions/{entry_id} HTTP/1.1
Host:
Accept: */*
{
"description": "text",
"id": "text",
"name": "text",
"params": {
"content": "",
"headers": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"status": 1
},
"tags": [
"text"
],
"type": "skip"
}
Update an individual Action within a configuration
Path parameters
configstringRequired
entry_idstringRequired
Body
descriptionstringOptional
idstringRequired
namestring · min: 1Required
paramsany ofOptionalDefault:
{}
or
objectOptional
tagsstring[]OptionalDefault:
List of tags to apply
[]
typeall ofRequired
Need to be one of predefined strings
string · enumOptionalPossible values:
Responses
200
Action updated successfully
application/json
422
Validation Error
application/json
put
PUT /api/v4.0/conf/{config}/actions/{entry_id} HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 158
{
"description": "text",
"id": "text",
"name": "text",
"params": {
"content": "",
"headers": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"status": 1
},
"tags": [
"text"
],
"type": "skip"
}
{
"message": "Successfully updated entry"
}
Create an individual Action within a configuration
Path parameters
configstringRequired
entry_idstringRequired
Body
descriptionstringOptional
idstringRequired
namestring · min: 1Required
paramsany ofOptionalDefault:
{}
or
objectOptional
tagsstring[]OptionalDefault:
List of tags to apply
[]
typeall ofRequired
Need to be one of predefined strings
string · enumOptionalPossible values:
Responses
200
Action created successfully
application/json
422
Validation Error
application/json
post
POST /api/v4.0/conf/{config}/actions/{entry_id} HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 158
{
"description": "text",
"id": "text",
"name": "text",
"params": {
"content": "",
"headers": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"status": 1
},
"tags": [
"text"
],
"type": "skip"
}
{
"message": "Successfully created entry"
}
Delete an individual Action from the specified configuration
Path parameters
configstringRequired
entry_idstringRequired
Responses
200
Action deleted successfully
application/json
422
Validation Error
application/json
delete
DELETE /api/v4.0/conf/{config}/actions/{entry_id} HTTP/1.1
Host:
Accept: */*
{
"message": "Successfully deleted entry"
}
Get list of versions of Actions in a configuration
Path parameters
configstringRequired
Responses
200
Actions version list retrieved successfully
application/json
422
Validation Error
application/json
get
GET /api/v4.0/conf/{config}/actions/versions HTTP/1.1
Host:
Accept: */*
{
"total": 1,
"items": [
{
"author": "text",
"email": "[email protected]",
"message": "text",
"date": "2025-07-12T06:43:30.878Z",
"version": "42bcc1282349db1e5791484c3d69420b1d8a8bc1",
"parents": [
"f44073242093228b45bff7eb7a065559fa9b46aa"
]
}
]
}
Get a specific version of an Action
Path parameters
configstringRequired
versionstringRequired
Responses
200
Action version retrieved successfully
application/json
422
Validation Error
application/json
get
GET /api/v4.0/conf/{config}/actions/versions/{version} HTTP/1.1
Host:
Accept: */*
{
"total": 1,
"items": [
{
"description": "text",
"id": "text",
"name": "text",
"params": {
"content": "",
"headers": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"status": 1
},
"tags": [
"text"
],
"type": "skip"
}
]
}
Set a previous Actions version to be the current one
Path parameters
configstringRequired
versionstringRequired
Responses
200
Actions reversion was successful
application/json
422
Validation Error
application/json
put
PUT /api/v4.0/conf/{config}/actions/versions/{version}/revert HTTP/1.1
Host:
Accept: */*
{
"message": "Successfully updated entry"
}
Last updated
Was this helpful?