Brault Developers

List the boards a file is on

Regionalus.api.brault.appfollows the region selector in the top bar
GET
/v1/files/{fileId}/boards

Only the boards the key’s creator can see. A single page — a file sits on a handful of boards.

AuthorizationBearer <token>

API key from Settings → Developers

In: header

Path Parameters

fileId*string

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/files/string/boards"
{  "object": "list",  "has_more": true,  "next_cursor": "string",  "data": [    {      "object": "board",      "id": "string",      "name": "string",      "color": "#E2E8EE",      "emoji": "string",      "logo_url": "string",      "pinned": true,      "my_access": "view",      "created_at": "2019-08-24T14:15:22Z",      "updated_at": "2019-08-24T14:15:22Z",      "created_by_id": "string"    }  ]}