> For the complete documentation index, see [llms.txt](https://docs.cloudplans.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cloudplans.io/api-reference/messages.md).

# Messages

## Get messages

<mark style="color:green;">`GET`</mark> /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**

{% tabs %}
{% tab title="200" %}

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

{% endtab %}
{% endtabs %}
