Skip to content

Microsoft Graph v1.0: todo list remove #2517

@garrytrinder

Description

@garrytrinder

The todo list remove command uses a beta endpoint that is now in v1.0.

const requestOptions: any = {
url: `${this.resource}/beta/me/todo/lists?$filter=displayName eq '${escape(args.options.name)}'`,
headers: {
accept: "application/json;odata.metadata=none"
},
responseType: 'json'
};

List lists: https://docs.microsoft.com/en-us/graph/api/todo-list-lists?view=graph-rest-1.0&tabs=http

const requestOptions: any = {
url: `${this.resource}/beta/me/todo/lists/${listId}`,
headers: {
accept: "application/json;odata.metadata=none"
},
responseType: 'json'
};

Delete todoTaskList: https://docs.microsoft.com/en-us/graph/api/todotasklist-delete?view=graph-rest-1.0&tabs=http

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions