Get All Space Notes

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

This endpoint retrieves the notes attached to all spaces in the organization, newest first, in a single paginated call. It sends an HTTP GET request to https://hub.xyte.io/core/v1/organization/spaces/notes.

Each item carries notable_id, so a caller can map a note back to its space. Device notes are not included — use Get All Device Notes.

Authorization

This endpoint requires Authorization.

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 Space for this endpoint.
notable_idintegerUnique identifier of the space 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": "0f7c9a2b-6d4e-xxxx-8a3c-xxxxxxxxxxxx",
      "content": "Access requires badge escort.",
      "notable_type": "Space",
      "notable_id": 17517,
      "created_by": null,
      "created_at": "2026-06-01T16:32:28Z",
      "updated_at": "2026-06-01T16:32:28Z"
    }
  ],
  "has_next_page": false
}

This listing is read-only — create and delete go through the per-space paths.

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here!