Skip to main content
GET
/
sites
/
{siteId}
/
notes
List site notes
curl --request GET \
  --url https://api.altostrat.io/sites/{siteId}/notes \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "Network Diagram Q4 2025.pdf",
    "key": "f6e5d4c3b2a1f6e5d4c3b2a1f6e5d4c3b2a1f6e5",
    "size": 1048576,
    "last_modified": "2025-10-29T14:00:00Z",
    "download_url": "https://s3.amazonaws.com/altostrat-bucket/...?..."
  }
]

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.

Response

A list of note files.

name
string

The display name of the file.

Example:

"Network Diagram Q4 2025.pdf"

key
string

The unique identifier or key for the file in storage.

Example:

"f6e5d4c3b2a1f6e5d4c3b2a1f6e5d4c3b2a1f6e5"

size
integer

The size of the file in bytes.

Example:

1048576

last_modified
string<date-time>

The last modified timestamp of the file.

Example:

"2025-10-29T14:00:00Z"

download_url
string<uri>

A short-lived, pre-signed URL to download the file directly.

Example:

"https://s3.amazonaws.com/altostrat-bucket/...?..."