Add delete:Folder to Microsoft Drive node (#1636)

This commit is contained in:
MedAliMarz
2021-04-17 10:18:29 +02:00
committed by GitHub
parent fbc11080c7
commit 415928db3c
2 changed files with 14 additions and 1 deletions

View File

@@ -222,6 +222,13 @@ export class MicrosoftOneDrive implements INodeType {
responseData = await microsoftApiRequest.call(this, 'POST', endpoint, body);
returnData.push(responseData);
}
//https://docs.microsoft.com/en-us/onedrive/developer/rest-api/api/driveitem_delete?view=odsp-graph-online
if (operation === 'delete') {
const folderId = this.getNodeParameter('folderId', i) as string;
responseData = await microsoftApiRequest.call(this, 'DELETE', `/drive/items/${folderId}`);
responseData = { success: true };
returnData.push(responseData as IDataObject);
}
//https://docs.microsoft.com/en-us/onedrive/developer/rest-api/api/driveitem_list_children?view=odsp-graph-online
if (operation === 'getChildren') {
const folderId = this.getNodeParameter('folderId', i) as string;