Skip to content

ReturnMessage

Optional user-facing notification returned by connector and App Connect workflows.

Properties

Property Type Required Description
message string No User-facing status or error message.
messageType string No Presentation severity. Common values are success, info, warning, danger, and error.
ttl integer · int32 No Suggested notification display time in milliseconds. Minimum: 0. Maximum: 2147483647.
details array of object of any No Optional structured details for clients that can present more than the main message.

Example

{
  "message": "string",
  "messageType": "string",
  "ttl": 0,
  "details": [
    {}
  ]
}