Pinterest Deleting a board

Deleting a board

Having the ID of a board, the board can be deleted like:

@using Skybrud.Social.Pinterest.Responses.Boards
@inherits WebViewPage<Skybrud.Social.Pinterest.PinterestService>

@{
    
    // Declare the ID of the board we wish to delete
    string boardId = "367536088279413701";

    // Make the call to the Pinterest API
    PinterestDeleteBoardResponse response = Model.Boards.DeleteBoard(boardId);

}