Skip to content

Latest commit

 

History

History
118 lines (94 loc) · 1.94 KB

Board.md

File metadata and controls

118 lines (94 loc) · 1.94 KB

Trello Board API

Find a board by id

$api->boards()->show(string $id, array $params)

Create a board

$api->boards()->create(array $params)

Update a board

$api->boards()->update(string $id, array $params)

Set a given board's name

$api->boards()->setName(string $id, string $name)

Set a given board's description

$api->boards()->setDescription(string $id, string $description)

Set a given board's state

$api->boards()->setClosed(string $id, boolean $closed)

Set a given board's subscription state

$api->boards()->setSubscribed(string $id, boolean $subscribed)

Set a given board's organization

$api->boards()->setOrganization(string $id, string $organizationId)

Get a given board's organization

$api->boards()->getOrganization(string $id, array $params)

Get the field of the organization of a given board

$api->boards()->getOrganizationField(string $id, string $field)

Get a given board's stars

$api->boards()->getStars(string $id, array $params)

Get a given board's deltas

$api->boards()->getDeltas(string $id, array $params)

Mark a given board as viewed

$api->boards()->setViewed(string $id)

Board Actions API

$api->boards()->actions()

Board Lists API

$api->boards()->lists()

Board Cards API

$api->boards()->cards()

Board Checklists API

$api->boards()->checklists()

Board Labels API

$api->boards()->labels()

Board Members API

$api->boards()->members()

Board Memberships API

$api->boards()->memberships()

Board Preferences API

$api->boards()->preferences()

Board MyPreferences API

$api->boards()->myPreferences()

Board PowerUps API

$api->boards()->powerUps()