Acronis Cyber Platform is a cloud platform used to manage cyber protection services such as alerts, tasks, activities, integration status, and other operational security data across Acronis tenants.
The Flowgear Acronis Node lets you execute curated and generated Acronis operations through template-driven Query, Create, Update, Delete, and Action methods. Use it when a Workflow needs to read Acronis data or report supported outbound integration events by using the configured tenant credentials.
0.0.0.5 - Initial release.
This Connection stores the Acronis tenant URL, OAuth client credentials, cached token details, and request timeout used by the Node.
| Property |
Type |
Description |
Base Url |
String |
The Acronis data-center root URL. Do not append /api/2 or other service paths. |
Client ID |
String |
The OAuth client identifier issued by Acronis. |
Client Secret |
Masked |
The OAuth client secret issued by Acronis. |
Access Token |
Masked |
The cached bearer token used for Acronis API calls. |
Access Token Expires At UTC |
String |
The UTC expiry hint recorded for the cached bearer token. |
Timeout (seconds) |
Integer |
The timeout used for token, validation, and runtime API calls. |
- Enter
Base Url as the tenant data-center root, for example https://eu8-cloud.acronis.com.
- Configure
Client ID and Client Secret from the Acronis OAuth client registration used for this integration.
- Leave token management to the Node. It refreshes bearer tokens before expiry and retries one unauthorized response after forcing a fresh token.
- Use the connection test to verify that the configured credentials can authenticate and read the current client registration.
- The current public templates focus on the curated Acronis surface and the preserved generated operations that are supported by the connector.
The Acronis Node exposes separate methods for read, mutation, and action-style operations. Templates populate the supported OperationId values and the expected Options or Items shape for the selected operation.
Executes a supported Acronis query operation.
| Parameter |
Type |
Description |
Connection |
Connection |
The Acronis connection. |
OperationId |
String |
The supported Acronis operation identifier selected by the template. |
Options |
Object |
The path and query parameters required by the selected Acronis operation. |
| Return |
Type |
Description |
Response |
Array |
One normalized row per returned Acronis item. Query rows preserve the provider payload and include Response.Flowgear.IsSuccess. Empty collection envelopes return zero rows. |
Executes a supported Acronis create operation.
| Parameter |
Type |
Description |
Connection |
Connection |
The Acronis connection. |
OperationId |
String |
The supported Acronis operation identifier selected by the template. |
Options |
Object |
The path and query parameters required by the selected Acronis operation. |
Items |
Array |
The streamed request-body items for the selected Acronis operation. |
| Return |
Type |
Description |
Response |
Array |
One normalized row per processed item. Mutation rows preserve the provider payload and include Response.Flowgear.IsSuccess plus Response.Flowgear.Message when there is actionable detail to surface. |
Executes a supported Acronis update operation.
| Parameter |
Type |
Description |
Connection |
Connection |
The Acronis connection. |
OperationId |
String |
The supported Acronis operation identifier selected by the template. |
Options |
Object |
The path and query parameters required by the selected Acronis operation. |
Items |
Array |
The streamed request-body items for the selected Acronis operation. |
| Return |
Type |
Description |
Response |
Array |
One normalized row per processed item. Mutation rows preserve the provider payload and include Response.Flowgear.IsSuccess plus Response.Flowgear.Message when there is actionable detail to surface. |
Executes a supported Acronis delete operation.
| Parameter |
Type |
Description |
Connection |
Connection |
The Acronis connection. |
OperationId |
String |
The supported Acronis operation identifier selected by the template. |
Options |
Object |
The path and query parameters required by the selected Acronis operation. |
Items |
Array |
Optional streamed request-body items for the selected delete operation. |
| Return |
Type |
Description |
Response |
Array |
One normalized row per processed item. Mutation rows preserve the provider payload and include Response.Flowgear.IsSuccess plus Response.Flowgear.Message when there is actionable detail to surface. |
Executes a supported Acronis action operation.
| Parameter |
Type |
Description |
Connection |
Connection |
The Acronis connection. |
OperationId |
String |
The supported Acronis operation identifier selected by the template. |
Options |
Object |
The path and query parameters required by the selected Acronis operation. |
Items |
Array |
The streamed request-body items for the selected Acronis action. |
| Return |
Type |
Description |
Response |
Array |
One normalized row per processed item. Action rows preserve the provider payload and include Response.Flowgear.IsSuccess plus Response.Flowgear.Message when there is actionable detail to surface. |
- Query templates cover the curated diagnostics, alerts, tasks, and activity flows together with the preserved supported generated operations.
- Alert, task, and activity paging is handled inside the Node, so Workflow templates stay focused on business filters instead of transport paging values.
- If the first provider query call fails, the Node surfaces that Acronis error instead of returning a synthetic success row.
- Alert pagination could only be partially confirmed from the validation tenant because that tenant returned no live alert items during the current implementation pass.
- Event Manager, alert mutations, and some legacy-bundled API families remain intentionally deferred until they are modeled and tested explicitly.