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

The following operations are supported on this resource:

  • GET - Get a single user belonging to the group
  • DELETE - Remove a single user belonging to the group
GET /groups/{id}/users/{user-id}Version 1

Get a single user belonging to the group.

Sample Usage

GET /groups/{id}/users/{user-id}


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

  • Sample Output JSON:
    {  
        "users":{  
            "user":{  
                "id":32768
            }
        }
    }

  • Access Control

    The following capabilities are required to access this API: AssignGroup2User

    DELETE /groups/{id}/users/{user-id}Version 1

    Remove the user from the group.

    Sample Usage

    DELETE /groups/{id}/users/{user-id}


    • Parameters:
      NameTypeURI TypeDescriptionRequired
      group-idIntegerPathgroup ID Y
      user-idIntegerPathUser ID Y

    Access Control

    The following capabilities are required to access this API: AssignGroup2User