Actions
Get all Actions in a configuration
Actions retrieved successfully
1Validation Error
GET /api/v4.3/conf/{config}/actions HTTP/1.1
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
[]Actions updated successfully
Information about successful update operation
Successfully updated entryValidation Error
PUT /api/v4.3/conf/{config}/actions HTTP/1.1
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
[]Actions created successfully
Information about successful create operation
Successfully created entryValidation Error
POST /api/v4.3/conf/{config}/actions HTTP/1.1
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"
}Delete all Actions in a configuration
Actions deleted successfully
Information about successful delete operation
Successfully deleted entryValidation Error
DELETE /api/v4.3/conf/{config}/actions HTTP/1.1
Accept: */*
{
"message": "Successfully deleted entry"
}Get an individual Action from the specified configuration
Action retrieved successfully
{}List of tags to apply
[]Validation Error
GET /api/v4.3/conf/{config}/actions/{entry_id} HTTP/1.1
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
[]Action updated successfully
Information about successful update operation
Successfully updated entryValidation Error
PUT /api/v4.3/conf/{config}/actions/{entry_id} HTTP/1.1
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
[]Action created successfully
Information about successful create operation
Successfully created entryValidation Error
POST /api/v4.3/conf/{config}/actions/{entry_id} HTTP/1.1
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
Information about successful delete operation
Successfully deleted entryValidation Error
DELETE /api/v4.3/conf/{config}/actions/{entry_id} HTTP/1.1
Accept: */*
{
"message": "Successfully deleted entry"
}Get list of versions of Actions in a configuration
Actions version list retrieved successfully
1Validation Error
GET /api/v4.3/conf/{config}/actions/versions HTTP/1.1
Accept: */*
{
"total": 1,
"items": [
{
"author": "text",
"email": "name@gmail.com",
"message": "text",
"date": "2026-01-01T00:00:00.000Z",
"version": "42bcc1282349db1e5791484c3d69420b1d8a8bc1",
"parents": [
"f44073242093228b45bff7eb7a065559fa9b46aa"
]
}
]
}Get a specific version of an Action
Action version retrieved successfully
1Validation Error
GET /api/v4.3/conf/{config}/actions/versions/{version} HTTP/1.1
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
Information about successful update operation
Successfully updated entryValidation Error
PUT /api/v4.3/conf/{config}/actions/versions/{version}/revert HTTP/1.1
Accept: */*
{
"message": "Successfully updated entry"
}Last updated
Was this helpful?