Mark one notification read.
POST
/notifications/{notificationId}/read
const url = 'https://api.gospl.example/v1/notifications/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/read';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.gospl.example/v1/notifications/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/read \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” notificationId
required
string format: uuid
Responses
Section titled “ Responses ”Marked read.
Missing/invalid credentials.
Media type application/json
object
code
required
string
message
required
string
Example generated
{ "code": "example", "message": "example"}Not found within the caller’s tenant.
Media type application/json
object
code
required
string
message
required
string
Example generated
{ "code": "example", "message": "example"}