Walls
Walls are content spaces where posts are published. Each wall can be scoped to specific groups (departments or teams). Walls are read-only over the API today; create them in the Monotree admin.
Required scope: read:walls
Endpoints
GET
/api/open/v1/wallsList all walls (paginated)
GET
/api/open/v1/walls/{id}Get a single wall
List walls
Standard list parameters apply: page, per_page (max 50), since. See Pagination.
curl "https://customer.monotree.com/api/open/v1/walls?per_page=10" \
-H "Authorization: Bearer mono_your_token_here"Response
{
"data": {
"id": 1,
"name": "General",
"groups": [
{
"id": 1,
"name": "Kitchen Staff",
"type": "department",
"created_at": "2026-01-15T10:00:00+00:00"
}
],
"created_at": "2026-01-15T10:00:00+00:00"
}
}