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

delete() public method

Delete a board
public delete ( string $board_id ) : boolean
$board_id string
return boolean
    public function delete($board_id)
    {
        $this->request->delete(sprintf("boards/%s", $board_id));
        return true;
    }