PUT
/
boards
/
{boardPublicId}
curl --request PUT \
  --url https://kanbn.com/api/v1/boards/{boardPublicId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "slug": "<string>",
  "visibility": "public"
}'
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

boardPublicId
string
required
Minimum length: 12

Body

application/json
name
string
Minimum length: 1
slug
string
Required string length: 3 - 60
visibility
enum<string>
Available options:
public,
private

Response

200
application/json
Successful response

The response is of type any.