Messages

Get messages

GET /v1/organizations/messages

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

org_id

string

The Organization ID

action=messages

string

The action (will not be needed soon)

Response

{
  "status": 200,
  "messages": [
    {
      "type": "info" / "warning" / "critical",
      "id": "string",
      "date": "string",
      "subject": "string",
      "message": "string"
    }
  ]
}

Last updated