List all users notifications
List all users notifications
Query Parameters
- offset integer
An offset is simply the number of records you wish to skip before selecting records.
- limit integer
Limit of entries that should be returned.
Responses
- 200
- 401
- 403
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema array
- id integer
The ID of the notification.
- title string
The notification's title.
- text string
The notification's text.
- created date-time
creation date
- type string
Possible values: [
INFO
,WARNING
]The notification's type.
- read date-time
date the user read the notification
[
{
"id": 120,
"title": "Model is ready",
"text": "Your model 'First Model' is ready to be used",
"created": "2023-11-02",
"type": "INFO",
"read": "2023-11-02"
}
]
User is not authenticated. This means token is either not present or invalid
User does not have enough permissions
Something is wrong with the API.
Loading...