Get group user details by user id.

get

/learn.rest/v1/learnCenters/{learnCenterId}/groups/{groupId}/Users/{userId}

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Group user details fetched.
Body
Example Response (application/json)
{
    "groupId":1202,
    "group":{
        "links":[
            {
                "rel":"canonical",
                "href":"{url}/learn.rest/v1/learnCenters/189353/groups/1202"
            }
        ]
    },
    "userId":1137009,
    "user":{
        "links":[
            {
                "rel":"canonical",
                "href":"{url}/learn.rest/v1/users/1137009"
            }
        ]
    },
    "statusFlag":true,
    "excludeFlag":false,
    "links":[
        {
            "rel":"canonical",
            "href":"{url}/learn.rest/v1/learnCenters/189353/groups/1202/users/1137009"
        }
    ]
}
Back to Top