/api/space/group-management/groups/{id}/user-ids

The following operation is supported on this resource:

  • GET - Get all the user ids assigned to the group
GET /groups/{id}/user-idsVersion 1

Get all the user ids assigned to the group.

Sample Usage

GET /groups/{id}/user-ids


  • Parameters:
    NameTypeURI TypeDescriptionRequired
    group-idIntegerPathGroup Id Y
  • Sample Output XML:
    <users>
        <user>
            <id>32768</id>
        </user>
        <user>
            <id>3</id>
        </user>
    </users>

  • Sample Output JSON:
    {  
        "users":{  
            "user":[  
                {  
                    "id":32768
                },
                {  
                    "id":3
                }
            ]
        }
    }

  • Access Control

    The following capabilities are required to access this API: AssignGroup2User, ReadUserGroups