Mark Notification Read

View as MarkdownOpen in Claude

Mark a particular notification message as read or unread.

PUT /fyi/notifications/{notificationID}

Request Object

Path Params

notificationId: String. Required
Code used to signify a specific notification to mark.

1request_url = f"{baseUrl}/fyi/notifications/more?id=12345678901234567"
2json_content = {}
3requests.put(url=request_url, json=json_content)

Response Object

V: int.
Returns 1 to state message was acknowledged.

T: int.
Returns the time in ms to complete the edit.

P: Object.
Returns details about the notification read status.

R: int.
Returns if the message was read (1) or unread (0).

ID: String.
Returns the ID for the notification..

{
"V": 1,
"T": 5,
"P": {
"R": 1,
"ID": "12345678901234567"
}
}