Skip to content

Mark an inbox item as read

POST
/inbox/v1/notifications/{id}/read
curl --request POST \
--url https://your-notavia-host/inbox/v1/notifications/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/read \
--header 'Authorization: Bearer <token>'
id
required
string format: uuid

Item marked read.

Media type application/json
object
id
string format: uuid
is_read
boolean
read_at
string format: date-time
nullable
Example generated
{
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"is_read": true,
"read_at": "2026-04-15T12:00:00Z"
}

Missing or invalid credentials.

Media type application/json
object
error
required
object
type
required
string
code
required
string
message
required
string
param
string
nullable
Example generated
{
"error": {
"type": "example",
"code": "example",
"message": "example",
"param": "example"
}
}

Resource not found.

Media type application/json
object
error
required
object
type
required
string
code
required
string
message
required
string
param
string
nullable
Example generated
{
"error": {
"type": "example",
"code": "example",
"message": "example",
"param": "example"
}
}