Retrieves log category items representing specific activities or observations within a log category.
Examples: Breakfast (under Meals & Nutrition), Shower (under Personal Care), Walk in Garden (under Activities)
Filters:
page,limit- Pagination controls (default: page=1, limit=10, max=100)
Note: This endpoint does not require authentication. Items are sorted by order for proper UI display.
Security
Bearer
GET
curl -i -X GET \
'https://data.logmycare.co.uk/openapi/api/logcategoryitems?page=1&limit=10' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
{ "data": [ { … } ], "pagination": { "page": 1, "limit": 10, "total": 150, "totalPages": 15, "hasNext": true, "hasPrev": false } }