Skip to content

Get logs (daily care notes)

Request

Retrieves logs (daily care notes) logged by staff members about residents' care, activities, and observations.

Filters:

  • homeId - Filter by specific care home
  • residentId - Filter by specific resident
  • categoryId - Filter by log category (e.g., Meals & Nutrition)
  • itemId - Filter by log category item (e.g., Breakfast)
  • loggedById - Filter by user who logged the entry
  • startDate, endDate - Date range filtering
  • dateField - Date field to filter on (default: timeLogged)
  • page, limit - Pagination controls (default: page=1, limit=10, max=100)

Note: Deleted logs are automatically excluded from results.

Security
bearer
Query
startDatestring, (date)

Start date for filtering (inclusive)

Example:startDate=2026-01-01
endDatestring, (date)

End date for filtering (inclusive)

Example:endDate=2026-12-31
pagenumber, >= 1

Page number (1-based)

Default:1
Example:page=1
limitnumber, [ 1 .. 100 ]

Number of records per page

Default:10
Example:limit=10
homeIdstring

Filter by home ID

Example:homeId=home-123-abc
residentIdstring

Filter by resident ID

Example:residentId=63299b624e4c26570fe21e75
categoryIdstring

Filter by log category ID

Example:categoryId=5f155c4ac49007031a671d4f
itemIdstring

Filter by log category item ID

Example:itemId=5f155c4ac49007031a671d50
loggedByIdstring

Filter by user who logged (loggedBy)

Example:loggedById=68ef4775c1e051de495b175a
dateFieldstring

Date field to filter on (only timeLogged supported)

Default:"timeLogged"
Value:"timeLogged"
Example:dateField=timeLogged
GET
/api/logs
curl -i -X GET \
  'https://data.logmycare.co.uk/openapi/api/logs?startDate=2026-01-01&endDate=2026-12-31&page=1&limit=10&homeId=home-123-abc&residentId=63299b624e4c26570fe21e75&categoryId=5f155c4ac49007031a671d4f&itemId=5f155c4ac49007031a671d50&loggedById=68ef4775c1e051de495b175a&dateField=timeLogged'

Responses

Successfully retrieved records

Bodyapplication/json
dataArray of objectsrequired

Array of logs (daily care notes) with enriched data

Example:
[ { "id": "6980bf40b0d86defd672b8a1", "title": "Resident had a good breakfast", "type": "log", "timeLogged": "2026-02-02T15:14:02.272Z", "originalTimeLog": "2026-02-02T15:14:08.625Z", "description": "Ate all food, engaged in conversation with other residents. No assistance required.", "location": "Dining Room", "deleted": false, "home": {}, "resident": {}, "loggedBy": {}, "editedBy": {}, "category": {}, "item": {}, "editedAt": "2026-02-02T15:20:00.000Z", "revisions": 0, "picture1": "https://lmc-care-uploads.s3.eu-west-2.amazonaws.com/photos/home/logs/example-home-id/photo1.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=EXAMPLE%2F20260202%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20260202T151402Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=examplesignature", "picture2": null, "picture3": null, "videoFile": null, "videoThumbnail": null, "hidden": false, "isNextHandover": false, "revoked": false, "revokedAt": null, "nonEditable": false, "amount1": 250, "amount2": 0, "amountType": "ml", "stockQuantityType": "volume", "latitude": 51.5, "longitude": -1.5, "accuracy": 10, "itemSublevel": "Lunch", "doneBySu": false, "response": {} } ]
paginationobject(PaginationMetaDto)required

Pagination metadata

Response
{ "data": [ {} ], "pagination": { "page": 1, "limit": 10, "total": 150, "totalPages": 15, "hasNext": true, "hasPrev": false } }