Actions
Get all Actions in a configuration
Actions retrieved successfully
Validation Error
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
{}
List of tags to apply
[]
Need to be one of predefined strings
Actions updated successfully
Validation Error
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
{}
List of tags to apply
[]
Need to be one of predefined strings
Actions created successfully
Validation Error
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
Action retrieved successfully
Validation Error
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
{}
List of tags to apply
[]
Need to be one of predefined strings
Action updated successfully
Validation Error
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
{}
List of tags to apply
[]
Need to be one of predefined strings
Action created successfully
Validation Error
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
Action deleted successfully
Validation Error
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
Actions version list retrieved successfully
Validation Error
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-08-29T20:13:19.830Z",
"version": "42bcc1282349db1e5791484c3d69420b1d8a8bc1",
"parents": [
"f44073242093228b45bff7eb7a065559fa9b46aa"
]
}
]
}
Get a specific version of an Action
Action version retrieved successfully
Validation Error
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
Actions reversion was successful
Validation Error
PUT /api/v4.0/conf/{config}/actions/versions/{version}/revert HTTP/1.1
Host:
Accept: */*
{
"message": "Successfully updated entry"
}
Last updated
Was this helpful?