Brault Developers

List board properties

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

In position order, each with its options.

AuthorizationBearer <token>

API key from Settings → Developers

In: header

Path Parameters

boardId*string

Query Parameters

limit?number
Range1 <= value <= 100
Default50
cursor?string

Opaque cursor from a previous response.

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/boards/string/properties"
{  "object": "list",  "has_more": true,  "next_cursor": "string",  "data": [    {      "object": "property",      "id": "string",      "scope": "board",      "board_id": "string",      "name": "string",      "type": "status",      "selection_mode": "single",      "options": [        {          "object": "option",          "id": "string",          "label": "string",          "color": "#E2E8EE",          "hidden": true,          "position": 0        }      ],      "position": 0,      "created_at": "2019-08-24T14:15:22Z",      "updated_at": "2019-08-24T14:15:22Z"    }  ]}