Which IIQ version are you inquiring about?
IIQ 8.4
Please share any other relevant files that may be required (for example, logs).
List User Accounts - endpoint: /listallusers
{
"users":[
{
"email":"[email protected]",
"id":"def"
}
]
}
List Group Member Of - endpoint: /listuser/email dynamically read from List User Accounts
{
"groups": [
{
"id": "string",
"name": "string"
}
]
}
Share all details about your problem, including any error messages you may have received.
Hi all, I am trying to implement a web service connector application.
- List all user accounts
- Get groups that belong to each user account using the response email address from Step 1 [I am stuck here]
Would like to check for step 2 should I call a get object? How do I combine the get object with account aggregation?
Note: Both components have different api endpoint. My end goal is for each user account to contain their respective groups during account aggregation which will look something like below.
{
"users":[
{
"email":"[email protected]",
"id":"def"
"groups": [
{
"id": "string",
"name": "string"
}
]
}
]
}