Skip to content

Instantly share code, notes, and snippets.

@Garvice
Created April 15, 2017 00:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Garvice/7077370c04c6974879ea5cb891f2554e to your computer and use it in GitHub Desktop.
Save Garvice/7077370c04c6974879ea5cb891f2554e to your computer and use it in GitHub Desktop.
deleteTodos(rowIds: Array<number>) {
const idsToDelete = rowIds.join();
this.http.delete(SMARTSHEET_URL + '/sheets/' + SHEET_ID + '/rows?ids=' + idsToDelete,
{headers: this.getHeaders()});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment