TOPIC
How to remove or delete a user from the SharePoint Online Group using Web Service in Nintex Workflow for Office 365.INSTRUCTIONS
- Open a Nintex Workflow for Office 365 Designer.
- Drag and drop the Web Request action.
- Configure the action as below
- URL : {Workflow Context:Current site URL}/_vti_bin/UserGroup.asmx
- Method : SOAP 1.1. Soap action : http://schemas.microsoft.com/sharepo...eUserFromGroup
- <?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<RemoveUserFromGroup xmlns="http://schemas.microsoft.com/sharepo...oap/directory/">
<groupName>string</groupName>
<userLoginName>string</userLoginName>
</RemoveUserFromGroup>
</soap:Body>
</soap:Envelope>
