Notifications
Authorizations
AuthorizationstringRequired
Bearer authentication with JWT
Query parameters
pageNumberinteger · int32Optional
pageSizeinteger · int32Optional
Responses
200
OK
dateAddedstring · date-timeRequired
objectIdentifierstring · uuidRequired
isReadbooleanRequired
titlestring · nullableRequired
messagestring · nullableRequired
typestring · nullableRequired
403
Forbidden
get/notifications
GET /notifications HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"dateAdded": "2026-01-01T00:00:00.000Z",
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"isRead": true,
"title": "text",
"message": "text",
"type": "text",
"resourceIdentifiers": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]Authorizations
AuthorizationstringRequired
Bearer authentication with JWT
Path parameters
objectIdentifierstring · uuidRequired
Responses
204
No Content
No content
403
Forbidden
404
Not Found
delete/notifications/{objectIdentifier}
DELETE /notifications/{objectIdentifier} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Authorizations
AuthorizationstringRequired
Bearer authentication with JWT
Path parameters
objectIdentifierstring · uuidRequired
Body
isReadbooleanOptional
Responses
204
No Content
No content
403
Forbidden
404
Not Found
patch/notifications/{objectIdentifier}
PATCH /notifications/{objectIdentifier} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"isRead": true
}No content
Last updated
