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.
limit string required offset string required Accept Example Content-Type Example success boolean timestamp string requestId string data object https://cloud.hostup.se/api/notifications 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" {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"notifications": [
"string"
],
"total": 0,
"unreadCount": 0
}
}