Skip to content

Instantly share code, notes, and snippets.

@Garvice
Created April 14, 2017 23:58
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/48a86e5aaff7030624068bf00bfd7a20 to your computer and use it in GitHub Desktop.
Save Garvice/48a86e5aaff7030624068bf00bfd7a20 to your computer and use it in GitHub Desktop.
updateTodo(rowId: number) {
const updatedTodo = { id: rowId, cells: [{ columnId: DONE_COLUMN_ID, value: true }] };
this.http.put(SMARTSHEET_URL + '/sheets/' + SHEET_ID + '/rows', updatedTodo,
{headers: this.getHeaders()});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment