Boomi MFT - AFT Management API Reference (v1) - Alerts
Download OpenAPI Specification: Download
For more information about Postman collections, forking, and making your first API call, refer to the Working with Boomi APIs on Postman page.
Retrieves an alert history record by ID
Returns detailed information for a specific historical alert record.
Authorizations:
query Parameters
| alertHistoryId | integer <int64> Unique identifier of the alert history record to retrieve |
Responses
Response Schema:
| id | integer <int64> |
| tenantId | integer <int32> |
| activeAlertId | integer <int64> |
| referenceId | integer <int64> |
| referenceType | string or null |
| alertTypeId | integer <int32> |
| alertSeverityId | integer <int32> |
| message | string or null |
| flowCode | string or null |
| endpointCode | string or null |
| organizationCode | string or null |
| createdDate | string <date-time> |
| acknowledgedDate | string or null <date-time> |
| acknowledgedBy | integer or null <int32> |
| clearedDate | string or null <date-time> |
| clearedBy | integer or null <int32> |
Response samples
- 200
- 401
- 403
- 500
Retrieves a formatted view of alert history for display purposes
Returns formatted alert history record optimized for display purposes.
Authorizations:
query Parameters
| alertHistoryId | integer <int64> Unique identifier of the alert history record |
Responses
Response Schema:
| id | integer <int64> |
| tenantId | integer <int32> |
| activeAlertId | integer <int64> |
| referenceId | integer <int64> |
| referenceType | string or null |
| alertTypeId | integer <int32> |
| alertType | string or null |
| alertSeverityId | integer <int32> |
| severityName | string or null |
| message | string or null |
| flowCode | string or null |
| flowName | string or null |
| flowId | integer or null <int32> |
| isFlowDeleted | boolean |
| endpointCode | string or null |
| endpointName | string or null |
| endpointId | integer or null <int32> |
| isEndpointDeleted | boolean |
| organizationCode | string or null |
| organizationName | string or null |
| organizationId | integer or null <int32> |
| isOrganizationDeleted | boolean |
| nodeName | string or null |
| nodeId | integer <int32> |
| thruNodeId | string or null |
| isNodeDeleted | boolean |
| createdDate | string or null |
| acknowledgedDate | string or null |
| acknowledgedBy | integer or null <int32> |
| clearedDate | string or null |
| clearedBy | integer or null <int32> |
| state | string or null |
Response samples
- 200
- 401
- 403
- 500
Retrieves a specific active alert by ID
Returns detailed information for a specific active alert.
Authorizations:
query Parameters
| activeAlertId | integer <int64> Unique identifier of the active alert to retrieve |
Responses
Response Schema:
| id | integer <int32> |
| tenantId | integer <int32> |
| referenceId | integer <int64> |
| referenceType | string or null |
| alertTypeId | integer <int32> |
| alertSeverityId | integer <int32> |
| message | string or null |
| flowCode | string or null |
| endpointCode | string or null |
| organizationCode | string or null |
| createdDate | string <date-time> |
| acknowledgedDate | string or null <date-time> |
| acknowledgedBy | integer or null <int32> |
| clearedDate | string or null <date-time> |
| clearedBy | integer or null <int32> |
Response samples
- 200
- 401
- 403
- 500
Retrieves a filtered list of active alerts
Supports filtering by date range, alert type, severity level, and affected components
Authorizations:
Request Body schema:
Filter criteria for active alerts including date range, severity, and affected components
| tenantId | integer <int32> |
| alertTypeId | integer <int32> |
| state | string or null |
| flowCode | string or null |
| endpointCode | string or null |
| organizationCode | string or null |
| fromDate | string or null |
| toDate | string or null |
Responses
Response Schema:
| id | integer <int32> |
| tenantId | integer <int32> |
| referenceId | integer <int64> |
| referenceType | string or null |
| alertTypeId | integer <int32> |
| alertSeverityId | integer <int32> |
| message | string or null |
| flowCode | string or null |
| endpointCode | string or null |
| organizationCode | string or null |
| createdDate | string <date-time> |
| acknowledgedDate | string or null <date-time> |
| acknowledgedBy | integer or null <int32> |
| clearedDate | string or null <date-time> |
| clearedBy | integer or null <int32> |
Request samples
- Payload
{- "tenantId": 0,
- "alertTypeId": 0,
- "state": "string",
- "flowCode": "string",
- "endpointCode": "string",
- "organizationCode": "string",
- "fromDate": "string",
- "toDate": "string"
}Response samples
- 200
- 400
- 401
- 403
- 500
Retrieves historical alert records with filtering capabilities
Provides comprehensive alert history for monitoring and audit purposes
Authorizations:
Request Body schema:
Filter criteria for alert history including date range, state, severity, and alert type
| tenantId | integer <int32> |
| alertTypeId | integer <int32> |
| state | string or null |
| flowCode | string or null |
| endpointCode | string or null |
| organizationCode | string or null |
| fromDate | string or null |
| toDate | string or null |
Responses
Response Schema:
| id | integer <int64> |
| tenantId | integer <int32> |
| activeAlertId | integer <int64> |
| referenceId | integer <int64> |
| referenceType | string or null |
| alertTypeId | integer <int32> |
| alertType | string or null |
| alertSeverityId | integer <int32> |
| severityName | string or null |
| message | string or null |
| flowCode | string or null |
| flowName | string or null |
| flowId | integer or null <int32> |
| isFlowDeleted | boolean |
| endpointCode | string or null |
| endpointName | string or null |
| endpointId | integer or null <int32> |
| isEndpointDeleted | boolean |
| organizationCode | string or null |
| organizationName | string or null |
| organizationId | integer or null <int32> |
| isOrganizationDeleted | boolean |
| nodeName | string or null |
| nodeId | integer <int32> |
| thruNodeId | string or null |
| isNodeDeleted | boolean |
| createdDate | string or null |
| acknowledgedDate | string or null |
| acknowledgedBy | integer or null <int32> |
| clearedDate | string or null |
| clearedBy | integer or null <int32> |
| state | string or null |
Request samples
- Payload
{- "tenantId": 0,
- "alertTypeId": 0,
- "state": "string",
- "flowCode": "string",
- "endpointCode": "string",
- "organizationCode": "string",
- "fromDate": "string",
- "toDate": "string"
}Response samples
- 200
- 400
- 401
- 403
- 500
Acknowledges an active alert to indicate it has been reviewed
Marks an active alert as reviewed by the current user.
Authorizations:
query Parameters
| alertId | integer <int64> Unique identifier of the active alert to acknowledge |
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Response samples
- 200
- 401
- 403
- 500
Acknowledges a historical alert to indicate it has been reviewed
Marks a historical alert record as reviewed by the current user.
Authorizations:
query Parameters
| alertId | integer <int64> Unique identifier of the historical alert to acknowledge |
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Response samples
- 200
- 401
- 403
- 500
Clears an active alert from the system
Removes an active alert from the active alerts list.
Authorizations:
query Parameters
| alertId | integer <int64> Unique identifier of the active alert to clear |
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Response samples
- 200
- 401
- 403
- 500
Clears a historical alert record from the system
Removes a historical alert record from the alert history.
Authorizations:
query Parameters
| alertId | integer <int64> Unique identifier of the historical alert to clear |
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Response samples
- 200
- 401
- 403
- 500
Clears multiple historical alert records in bulk operation
Removes multiple historical alert records in a single bulk operation.
Authorizations:
Request Body schema:
List of unique identifiers for historical alerts to clear
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Request samples
- Payload
[- 0
]Response samples
- 200
- 400
- 401
- 403
- 500