Retrieve a notification
Path Parameters
- notification_id integer required
ID of the notification
Responses
- 200
- 401
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
- 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
The notification was not found
Something is wrong with the API.
Loading...