POST /v1/inbox/\{user_id\}/bulk-read
Service: comms · operationId: (none)
Mark multiple inbox items as read.
Required scopes
(no scope declared — review service config)
Path parameters
user_id(string) required —
Request body
{
"type": "object",
"properties": {
"ids": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"minItems": 1,
"maxItems": 100
}
},
"required": [
"ids"
]
}Responses
200 Items marked as read
{
"type": "object",
"properties": {
"updated": {
"type": "integer"
}
},
"required": [
"updated"
]
}422 Validation error
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"error",
"message"
]
}Example
curl -X POST https://comms.platform.loop.health/v1/inbox/{user_id}/bulk-read \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{ ... }'Related
services/comms— service overview- All endpoints — directory across services
- Auth model — how scopes are enforced