POST
/
v1
/
subscribers
/
{subscriberId}
/
messages
/
mark-as
curl --request POST \
  --url https://app.enzo.health/api/v1/subscribers/{subscriberId}/messages/mark-as \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "messageId": "<string>",
  "seen": true,
  "read": true
}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

subscriberId
string
required

Body

application/json
messageId
string
required
seen
boolean
read
boolean

Response

200
application/json
Successful response
success
boolean
required