Skip to content

Latest commit

 

History

History
83 lines (66 loc) · 1.64 KB

Action.md

File metadata and controls

83 lines (66 loc) · 1.64 KB

Trello Action API

Find an action by id

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

Update a checklist

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

Remove a action

$api->actions()->remove(string $id)

Get an action's board

$api->actions()->getBoard(string $id, array $params)

Get the field of a board of a given card

$api->actions()->getBoardField(string $id, array $field)

Get an action's list

$api->actions()->getList(string $id, array $params)

Get the field of a list of a given action

$api->actions()->getListField(string $id, array $field)

Get an action's card

$api->actions()->getCard(string $id, array $params)

Get the field of a card of a given action

$api->actions()->getCardField(string $id, array $field)

Get an action's member

$api->actions()->getMember(string $id, array $params)

Get the field of a member of a given action

$api->actions()->getMemberField(string $id, array $field)

Get an action's creator

$api->actions()->getCreator(string $id, array $params)

Get the field of a creator of a given action

$api->actions()->getCreatorField(string $id, array $field)

Get an action's organization

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

Get the field of an organization of a given action

$api->actions()->getOrganizationField(string $id, array $field)

Set a given action's text

$api->actions()->setText(string $id, string $text)