DirkGroenen\Pinterest\Endpoints\Boards::get PHP Method

get() public method

Find the provided board
public get ( string $board_id, array $data = [] ) : Board
$board_id string
$data array
return DirkGroenen\Pinterest\Models\Board
    public function get($board_id, array $data = [])
    {
        $response = $this->request->get(sprintf("boards/%s", $board_id), $data);
        return new Board($this->master, $response);
    }