Waiting for engine...
Skip to main content

Boomi API Control Plane REST API - SystemMessages

Toggle Pane

Download OpenAPI Specification: Download

Run In Postman

For more information about Postman collections, forking, and making your first API call, refer to the Working with Boomi APIs on Postman page.

System Messages

Platform-wide system messages.

List system messages

Get all current system messages. (This feature will be re-done in the future.)

Authorizations:
bearerAuth

Responses

Response Schema: application/json
Array
createdAt
required
string <date-time>

Timestamp when the message was created.

level
required
string
Enum: "INFO" "WARNING" "ERROR"

Severity level: INFO, WARNING, or ERROR.

message
required
string

Full message body.

title
required
string

Short title of the notification.

Response samples

Content type
application/json
[
  • {
    • "title": "string",
    • "level": "INFO",
    • "message": "string",
    • "createdAt": "2019-08-24T14:15:22Z"
    }
]