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 a space, newest first. It sends an HTTP GET request to https://hub.xyte.io/core/v1/organization/spaces/{space_id}/notes.
Authorization
This endpoint requires Authorization.
Path Parameters
| Parameter | Type | Description |
|---|---|---|
| space_id | integer | Unique identifier of the space. |
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 Space for this endpoint. |
| notable_id | integer | Unique identifier of the space 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": "0f7c9a2b-6d4e-xxxx-8a3c-xxxxxxxxxxxx",
"content": "Access requires badge escort. **AV rack** is in the back closet.",
"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
}Errors
| Status | Description |
|---|---|
| 404 | The space does not exist or does not belong to your organization. |
