DELETE /v1/feed/subscriptions
Service: community · operationId: (none)
Required scopes
(no scope declared — review service config)
Request body
{
"type": "object",
"properties": {
"subscriber_id": {
"type": "string",
"minLength": 1
},
"target_type": {
"type": "string",
"enum": [
"user",
"topic"
]
},
"target_id": {
"type": "string",
"minLength": 1
},
"brand_id": {
"type": "string",
"minLength": 1
}
},
"required": [
"subscriber_id",
"target_type",
"target_id",
"brand_id"
]
}Responses
200 Unsubscribed
{
"type": "object",
"properties": {
"success": {
"type": "boolean",
"enum": [
true
]
}
},
"required": [
"success"
]
}404 Not subscribed
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"error",
"message"
]
}Example
curl -X DELETE https://community.platform.loop.health/v1/feed/subscriptions \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{ ... }'Related
services/community— service overview- All endpoints — directory across services
- Auth model — how scopes are enforced