Get message types

get

{basePath}/notifications/discovery

The API is used to get a list of all the available MessageType Types.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

A list of MessageType types
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : items
Type: array
Array of notification message types.
Show Source
Nested Schema : MessageType
Type: object
Information about the type of message.
Show Source
  • Identifier of the message type [Source - POS] "CheckNotification", "OrganizationsNotification", "ConfigurationNotification" supports organization, property, and revenue center hierarchy level subscriptions. "EmployeesNotification" supports organization, and property hierarchy level subscriptions.
    Example: { "id":"CheckNotification" }

404 Response

404 Requested resource not found
Back to Top

Examples

Example Request Body

Not applicable for this endpoint.

Example Response Body

The following example shows the contents of the response body in JSON format:


{
  "items": [
    {
      "id": "CheckNotification"
    },
    {
      "id": "ConfigurationNotification"
    }
  ]
}
Back to Top