Sample notes
# Sample notes
Sample notes are the first business slice. Public readers can list and
open published notes. Administrators create, edit, and delete notes after
signing in.
## Public URLs
- HTML list: `/samples`
- HTML detail: `/samples/{id}`
- JSON list: `/api/v1/sample-notes`
- JSON detail: `/api/v1/sample-notes/{id}`
## Example list response
```json
{
"data": [
{
"id": "1",
"title": "Welcome",
"status": "published"
}
]
}
```
Writes require an administrator session and a synchronizer CSRF token.
Public documentation never describes those secrets.