POST /v1/posts/\{post_id\}/unlock
Service: community · operationId: (none)
Required scopes
(no scope declared — review service config)
Path parameters
post_id(string) required —
Responses
200 Post unlocked
{
"type": "object",
"properties": {
"success": {
"type": "boolean",
"enum": [
true
]
},
"locked_at": {
"type": [
"string",
"null"
]
},
"locked_by_user_id": {
"type": [
"string",
"null"
]
},
"locked_reason": {
"type": [
"string",
"null"
]
}
},
"required": [
"success",
"locked_at",
"locked_by_user_id",
"locked_reason"
]
}404 Post not found
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"error",
"message"
]
}Example
curl -X POST https://community.platform.loop.health/v1/posts/{post_id}/unlock \
-H "Authorization: Bearer $ACCESS_TOKEN"Related
services/community— service overview- All endpoints — directory across services
- Auth model — how scopes are enforced