Brault Developers

Set or clear a board property value

Regionalus.api.brault.appfollows the region selector in the top bar
PUT
/v1/boards/{boardId}/files/{fileId}/properties/{propertyId}

Send exactly one field, named after the property’s type. null clears a scalar; multi_tag takes { add, remove }.

AuthorizationBearer <token>

API key from Settings → Developers

In: header

Path Parameters

boardId*string
fileId*string
propertyId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X PUT "https://example.com/v1/boards/string/files/string/properties/string" \  -H "Content-Type: application/json" \  -d '{}'
{  "object": "board_file",  "board_id": "string",  "file": {    "object": "file",    "id": "string",    "kind": "image",    "name": "string",    "extension": "string",    "mime": "string",    "size": 0,    "status": "processing",    "library_id": "string",    "folder_id": "string",    "external_url": "string",    "duration_ms": 0,    "resolution": "1920x1080",    "created_at": "2019-08-24T14:15:22Z",    "created_by_id": "string",    "trashed_at": "2019-08-24T14:15:22Z",    "thumbnail_url": "string",    "version": {      "count": 0,      "active_number": 0,      "active_id": "string"    }  },  "values": [    {      "property_id": "string",      "type": "status",      "status": {        "option_id": "string"      },      "person": {        "user_id": "string"      },      "date": {        "start": "2019-08-24T14:15:22Z"      },      "checkbox": true,      "text": "string",      "multi_tag": [        {          "option_id": "string"        }      ],      "tag": [        {          "option_id": "string"        }      ]    }  ],  "added_at": "2019-08-24T14:15:22Z"}