get
https://example.com
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
This endpoint attaches a new note to a space. It sends an HTTP POST request to https://hub.xyte.io/core/v1/organization/spaces/{space_id}/notes.
Notes created through the API have a null created_by, since API calls carry no user context.
Authorization
This endpoint requires Authorization.
Path Parameters
| Parameter | Type | Description |
|---|---|---|
| space_id | integer | Unique identifier of the space. |
Request Body
| Key | Type | Description | Required |
|---|---|---|---|
| content | string | Note content. Supports markdown. | Yes |
{
"content": "Room rewired 2026-06-01. Patch panel map is on the inside of the rack door."
}Response
Returns the created note:
| Key | Type | Description |
|---|---|---|
| id | string | Unique identifier of the note (UUID). |
| content | string | Note content. |
| notable_type | string | Always Space for this endpoint. |
| notable_id | integer | Unique identifier of the space the note is attached to. |
| created_by | string | Always null for notes 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. |
Errors
| Status | Description |
|---|---|
| 404 | The space does not exist or does not belong to your organization. |
| 422 | The content field is missing or blank. |
