Skip to main content
POST
/
sites
/
{siteId}
/
notes
Create a site note
curl --request POST \
  --url https://api.altostrat.io/sites/{siteId}/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Installation Instructions",
  "body": "### Step 1\nConnect the primary WAN interface."
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

A bearer token is required for all API requests.

Path Parameters

siteId
string
required

The unique identifier for the site.

Body

application/json

The content of the note.

name
string
required

A title for the note. This will be used to generate the filename.

Example:

"Installation Instructions"

body
string
required

The full content of the note in Markdown format.

Example:

"### Step 1\nConnect the primary WAN interface."

Response

The note was created successfully.