Hi @Bucheron
If you want to retrieve all group names it is probably easier to add a parse json action and than loop through the results of that parse json output results.
1. Add a parse json action. Use the body of your http request to sharepoint action and use the following schema
{
"type": "object",
"properties": {
"d": {
"type": "object",
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"__metadata": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"uri": {
"type": "string"
},
"type": {
"type": "string"
}
}
},
"Owner": {
"type": "object",
"properties": {
"__deferred": {
"type": "object",
"properties": {
"uri": {
"type": "string"
}
}
}
}
},
"Users": {
"type": "object",
"properties": {
"__deferred": {
"type": "object",
"properties": {
"uri": {
"type": "string"
}
}
}
}
},
"Id": {
"type": "integer"
},
"IsHiddenInUI": {
"type": "boolean"
},
"LoginName": {
"type": "string"
},
"Title": {
"type": "string"
},
"PrincipalType": {
"type": "integer"
},
"AllowMembersEditMembership": {
"type": "boolean"
},
"AllowRequestToJoinLeave": {
"type": "boolean"
},
"AutoAcceptRequestToJoinLeave": {
"type": "boolean"
},
"Description": {},
"OnlyAllowMembersViewMembership": {
"type": "boolean"
},
"OwnerTitle": {
"type": "string"
},
"RequestToJoinLeaveEmailSetting": {
"type": "string"
}
},
"required": [
"__metadata",
"Owner",
"Users",
"Id",
"IsHiddenInUI",
"LoginName",
"Title",
"PrincipalType",
"AllowMembersEditMembership",
"AllowRequestToJoinLeave",
"AutoAcceptRequestToJoinLeave",
"Description",
"OnlyAllowMembersViewMembership",
"OwnerTitle",
"RequestToJoinLeaveEmailSetting"
]
}
}
}
}
}
}

2. Add the results to an apply for each and add for instance a compose within the apply to each to display the loginname field
