Sign in

Update board

documented

Update properties of an existing board.

PUT /boards/{id}Boardsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.trello.com/1/boards/{{$board_id}}?key={{TRELLO_API_KEY}}&token={{OAUTH2_ACCESS_TOKEN}}" \
  -X PUT \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"name": "{{$name}}", "desc": "{{$desc}}", "closed": {{$closed}}, "idOrganization": "{{$organization_id}}", "prefs/permissionLevel": "{{$permissionLevel}}", "prefs/selfJoin": {{$selfJoin}}, "prefs/cardCovers": {{$cardCovers}}, "prefs/hideVotes": {{$hideVotes}}, "prefs/invitations": "{{$invitations}}"}'