Skip to content

update

POST
/notification/{id}

Marks a notification as seen.

Authorizations

Parameters

Path Parameters

id
required
string
>= 15 characters <= 15 characters

Notification Id

Example
6vcudpc4wgc0ckk

Query Parameters

requestKey
string

Unique request key. Prevents auto cancel when sending multiple requests.

Request Body

object
seen
required
boolean
default: true
Example
{
"seen": true
}

Responses

200

object
author
required
string
collectionId
required
string
collectionName
required
string
created
required
string
id
required
string
metadata
required
object
author
required
string
id
required
string
list
required
string
recipient
required
string
seen
required
boolean
type
required
string
updated
required
string
Examples

Success

{
"author": "znhd3hgrxl85c9f",
"collectionId": "khrcci2uqknny8h",
"collectionName": "notifications",
"created": "2025-01-03 10:36:23.603Z",
"id": "yu9vp1kbid56s6u",
"metadata": {
"author": "Flomp",
"id": "dci7qk44birm2bn",
"list": "Liste mit Oachkatzerl"
},
"recipient": "3mugf953w4a9fg5",
"seen": true,
"type": "list_share",
"updated": "2025-01-03 10:57:22.899Z"
}

400

object
message
required
string
detail
required
Array<object>
object
code
string
minimum
integer
type
string
inclusive
boolean
exact
boolean
message
string
path
Array<string>
Examples

Exception

{
"message": "invalid_params",
"detail": [
{
"code": "too_small",
"minimum": 15,
"type": "string",
"inclusive": true,
"exact": true,
"message": "String must contain exactly 15 character(s)",
"path": [
"id"
]
}
]
}

404

object
message
required
string
detail
required
object
code
required
integer
message
required
string
data
required
object
Examples

Exception

{
"message": "The requested resource wasn't found.",
"detail": {
"code": 404,
"message": "The requested resource wasn't found.",
"data": {}
}
}