Altostrat Studio is here — the AI-native network operations IDE for engineers running production. Terminal, diagrams, runbooks, and Copilot in one workspace. Get started →
curl --request POST \
--url https://v1.api.altostrat.io/metadata/{siteId}/notes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Installation Instructions",
"body": "### Step 1\nConnect the primary WAN interface."
}
'{
"type": "invalid_request_error",
"code": "parameter_missing",
"message": "The 'name' parameter is required for this request.",
"doc_url": "https://docs.altostrat.io/errors/parameter_missing"
}Creates a new markdown note and attaches it to the specified site.
curl --request POST \
--url https://v1.api.altostrat.io/metadata/{siteId}/notes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Installation Instructions",
"body": "### Step 1\nConnect the primary WAN interface."
}
'{
"type": "invalid_request_error",
"code": "parameter_missing",
"message": "The 'name' parameter is required for this request.",
"doc_url": "https://docs.altostrat.io/errors/parameter_missing"
}Documentation Index
Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
A bearer token is required for all API requests.
The unique identifier for the site.
The content of the note.
The note was created successfully.
Was this page helpful?