Create List Group On Behalf Of API
This new API lists all the groups that the given user/ member id belongs to in the given tenant. This API requires caller to have the service.entitlements.admin permission.
The API spec:
/members/{member_email}/groups: get: tags: - "Entitlements Groups Administration" description: "Lists all the groups that the given user email belongs to in the given tenant. This API requires caller to have the service.entitlements.admin permission" operationId: "getGroupsByMemberId" produces: - "application/json" parameters: - name: "data-partition-id" in: "header" description: "This value should be the desired data partition id." required: true type: "string" default: "common" - name: "type" in: "query" description: "type" required: true type: "string" enum: [DATA, USER, SERVICE] default: "DATA" - name: "member_email" in: "path" description: "member email" required: true type: "string" default: "member@domain.com" responses: 200: description: "List of groups"