Get a list of owners for groups in LearnCenter.
get
                    /learn.rest/v1/learnCenters/{learnCenterId}/groups/{groupId}/owners
Request
Path Parameters
                - 
                    groupId: number
                    
                    Unique identifier of a group.
 - 
                    learnCenterId: number
                    
                    Unique identifier of LearnCenter.
 
Query Parameters
                - 
                        limit(optional): integer
                        
                        Specify how many items should be returned in a payload. Must be lower than server default limit size.
 - 
                        offset(optional): integer
                        
                        Specify starting point of the response.Default Value:
0 - 
                        totalResults(optional): boolean
                        
                        If set to true, payload includes the total number of rows that satisfies the request. This parameter determines if the 'last' link is displayed for a pageable collection.
 
Response
Supported Media Types
                - application/json
 
200 Response
Group owners collection fetched.
                
                
                    Nested Schema : GroupOwnerLink
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            href(optional): 
            string
            Example:
{url}/learn.rest/v1/learnCenter/178409/groups/456/owners/112867 - 
            rel(optional): 
            string
            Example:
canonical 
Nested Schema : items
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        
        
    
    
    
    
    
    
    objectExample:
    
    
[
    {
        "rel":"canonical",
        "href":"https://{url}/learn.rest/v1/learnCenters/178409/groups/766/owners"
    }
]Example Response (application/json)
                    {
    "items":[
        {
            "id":112867,
            "links":[
                {
                    "rel":"canonical",
                    "href":"https://{url}/learn.rest/v1/learnCenters/178409/groups/766/owners/112867"
                }
            ]
        }
    ],
    "links":[
        {
            "rel":"canonical",
            "href":"https://{url}/learn.rest/v1/learnCenters/178409/groups/766/owners"
        }
    ]
}
                    
                    401 Response
500 Response
Internal server error.