Brault Developers

Add files to a board

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

Every id is either added or already on the board. An id this key cannot serve fails the whole request with 404 before anything is added.

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 POST "https://example.com/v1/boards/string/files" \  -H "Content-Type: application/json" \  -d '{    "file_ids": [      "string"    ]  }'
{  "object": "board_files_batch",  "board_id": "string",  "results": [    {      "file_id": "string",      "status": "added"    }  ]}