I have a custom Web Service that has a unique layout that I am attempting to work with. The users are in group folders within a single root folder. So I will need to make 3 requests to get the users:
- Get Root Folder
- Get Group Folders within Root
- Get Users within each Group Folder
When I set this up, it is only showing a single account being found, but it is not creating any accounts. The Account schema is set up as follows:
- User_ID - From Request 3 - Account ID and Account Name
- Display_Name - From Request 3
- Email - From Request 3
- Root_Folder_ID - From Request 1
- Group_Folder_ID - From Request 2
Is this inverted process manageable out of the box, or will I need to handle all calls within an WS After Operation Rule?
Edit: I hard coded the Request 3 as a single operation for 1 group, and I was able to pull in all users of that group, so I know that request works.