Brault Developers

Update a board

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

name, color and emoji are applied first; pinned is applied after them. Only the fields sent change.

AuthorizationBearer <token>

API key from Settings → Developers

In: header

Path Parameters

boardId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X PATCH "https://example.com/v1/boards/string" \  -H "Content-Type: application/json" \  -d '{}'
{  "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",  "properties": [    {      "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"    }  ]}