DELETE /v1/admin/posts/\{post_id\}/pin
Service: community · operationId: (none)
Remove a post from the staff-pinned feed slots
Required scopes
(no scope declared — review service config)
Path parameters
post_id(string) required —
Responses
200 Post unpinned
{
"type": "object",
"properties": {
"success": {
"type": "boolean",
"enum": [
true
]
},
"pinned_by_staff_at": {
"type": [
"string",
"null"
]
}
},
"required": [
"success",
"pinned_by_staff_at"
]
}404 Post not found
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"error",
"message"
]
}Example
curl -X DELETE https://community.platform.loop.health/v1/admin/posts/{post_id}/pin \
-H "Authorization: Bearer $ACCESS_TOKEN"Related
services/community— service overview- All endpoints — directory across services
- Auth model — how scopes are enforced