GET /v1/policies
Service: content · operationId: (none)
Required scopes
(no scope declared — review service config)
Query parameters
status(string) —page(number,null) —limit(number,null) —
Responses
200 List of policy documents
{
"type": "object",
"properties": {
"docs": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"anyOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"slug": {
"type": "string"
},
"title": {
"type": "string"
},
"bodyMarkdown": {
"type": "string"
},
"lastUpdatedAt": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"draft",
"published"
]
},
"createdAt": {
"type": "string"
},
"updatedAt": {
"type": "string"
}
},
"required": [
"id",
"slug",
"title",
"bodyMarkdown",
"lastUpdatedAt",
"status",
"createdAt",
"updatedAt"
]
}
},
"totalDocs": {
"type": "number"
},
"page": {
"type": "number"
},
"totalPages": {
"type": "number"
},
"hasNextPage": {
"type": "boolean"
},
"hasPrevPage": {
"type": "boolean"
}
},
"required": [
"docs",
"totalDocs",
"hasNextPage",
"hasPrevPage"
]
}Example
curl -X GET https://content.platform.loop.health/v1/policies \
-H "Authorization: Bearer $ACCESS_TOKEN"Related
services/content— service overview- All endpoints — directory across services
- Auth model — how scopes are enforced