List Sheets under a particular workspace .NET C#

Options

Is there a parameter I can add to

List Sheets under a particular workspace .NET C#?

Thank you!

Answers

  • Etienne Mermillod
    Etienne Mermillod ✭✭✭✭✭
    Options

    Once you have build the client, all you need is to call the get workspace :

    client = new SmartsheetBuilder().SetAccessToken(Token);
    var workspace = client.WorkspaceResources.GetWorkspace(99999);

    inside the workspace variable you should find a list of sheets.