get
https://example.com
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
This endpoint retrieves the notes attached to all devices in the organization, newest first, in a single paginated call. It sends an HTTP GET request to https://hub.xyte.io/core/v1/organization/devices/notes.
Each item carries notable_id, so a caller can map a note back to its device. Space notes are not included — use Get All Space Notes.
Authorization
This endpoint requires Authorization.
Query Parameters
| Parameter | Type | Description | Default |
|---|---|---|---|
| page | integer | Page number, starting at 1. | 1 |
| per_page | integer | Number of results per page. Min: 1, Max: 500. | 20 |
Response
Returns Paginated data where each item has the following fields:
| Key | Type | Description |
|---|---|---|
| id | string | Unique identifier of the note (UUID). |
| content | string | Note content. Supports markdown. |
| notable_type | string | Type of resource the note is attached to. Always Device for this endpoint. |
| notable_id | string | Unique identifier of the device the note is attached to. |
| created_by | string | UUID of the user who created the note, or null if the note was created through the API. |
| created_at | string | Date and time the note was created, in ISO 8601 format. |
| updated_at | string | Date and time the note was last updated, in ISO 8601 format. |
{
"items": [
{
"id": "5b2e4d6e-9c1a-xxxx-b1f0-xxxxxxxxxxxx",
"content": "Replaced PSU on 2026-06-01.",
"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"
},
{
"id": "8a1f2c3d-4e5f-xxxx-a0b1-xxxxxxxxxxxx",
"content": "Mounted behind the left panel.",
"notable_type": "Device",
"notable_id": "c66308c8-1d12-xxxx-86ea-xxxxxxxxxxxx",
"created_by": "faf2ccca-7c32-xxxx-91c6-xxxxxxxxxxxx",
"created_at": "2026-05-28T09:14:02Z",
"updated_at": "2026-05-28T09:14:02Z"
}
],
"has_next_page": false
}This listing is read-only — create and delete go through the per-device paths.
