Get Device Notes

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

This endpoint retrieves the notes attached to a device, newest first. It sends an HTTP GET request to https://hub.xyte.io/core/v1/organization/devices/{device_id}/notes.

Authorization

This endpoint requires Authorization.

Path Parameters

ParameterTypeDescription
device_idstringUnique identifier of the device (UUID).

Query Parameters

ParameterTypeDescriptionDefault
pageintegerPage number, starting at 1.1
per_pageintegerNumber of results per page. Min: 1, Max: 500.20

Response

Returns Paginated data where each item has the following fields:

KeyTypeDescription
idstringUnique identifier of the note (UUID).
contentstringNote content. Supports markdown.
notable_typestringType of resource the note is attached to. Always Device for this endpoint.
notable_idstringUnique identifier of the device the note is attached to.
created_bystringUUID of the user who created the note, or null if the note was created through the API.
created_atstringDate and time the note was created, in ISO 8601 format.
updated_atstringDate and time the note was last updated, in ISO 8601 format.
{
  "items": [
    {
      "id": "5b2e4d6e-9c1a-xxxx-b1f0-xxxxxxxxxxxx",
      "content": "Mounted behind the left panel. **Service hatch key** is at reception.",
      "notable_type": "Device",
      "notable_id": "929f89cc-e2bb-xxxx-9309-xxxxxxxxxxxx",
      "created_by": null,
      "created_at": "2026-06-01T16:32:28Z",
      "updated_at": "2026-06-01T16:32:28Z"
    }
  ],
  "has_next_page": false
}

Errors

StatusDescription
404The device does not exist or does not belong to your organization.
Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here!