Get your notifications and messages

Retrieve a list of all notifications and messages relevant to your user account. Use this to show the user new or unread messages, for example, if a service needs attention or if there is important account information. The endpoint returns a unique `requestId` for tracking the call.

Query Parameters

limit string required
offset string required

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/notifications
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/notifications?limit=string&offset=string" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "notifications": [
      "string"
    ],
    "total": 0,
    "unreadCount": 0
  }
}