meta { name: Get Board type: http seq: 2 } get { url: {{appview_url}}/api/boards/1 } assert { res.status: eq 200 res.body.id: isDefined res.body.name: isDefined res.body.uri: isDefined } docs { Returns a single board by ID. Path params: - id: Board ID (integer) Returns: { "id": "1", "did": "did:plc:...", "uri": "at://did:plc:.../space.atbb.forum.board/rkey", "name": "General Discussion", "description": "A place for general topics", "categoryId": "1", "categoryUri": "at://did:plc:.../space.atbb.forum.category/rkey", "slug": null, "sortOrder": null, "createdAt": "...", "indexedAt": "..." } Error codes: - 400: Invalid board ID (non-integer) - 404: Board not found - 500: Server error }