Method: Trello::Board.find

Defined in:
lib/trello/board.rb

.find(id, params = {}) ⇒ Trello::Board

Finds a board.

Parameters:

  • Either the board’s short ID (an alphanumeric string, found e.g. in the board’s URL) or its long ID (a 24-character hex string.)

  • (defaults to: {})

Returns:

Raises:

  • if a board with the given ID could not be found.



39
40
41
# File 'lib/trello/board.rb', line 39

def find(id, params = {})
  client.find(:board, id, params)
end