Get all user groups assigned to content type

get

/km/api/v1/contentTypes/{id}/userGroups

This method returns a list of UserGroup objects associated with the ContentType object having the specified ID parameter.

The content type can be configured to allow content authors to associate the content with UserGroup objects. Content authors assign a user Group to the content, so that users with a certain level of access will have access to the content.

This resource supports the orderBy request parameter, which allows you to sort the returned list of UserGroup objects.

You can find different values to use with the orderBy parameter in the schema and catalog information of the resource. To get the schema and catalog information, use GET method with the mediaType value as 'application/schema+json' in the HTTP request.

The example URI to get schema and catalog of the resource is as follows:

  • http://<IM_REST_API_HOST>/km/api/latest/metadata-catalog/ UserGroups

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

OK.
Body ()
Root Schema : ResultList UserGroupKey
Type: object
Title: ResultList UserGroupKey
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : UserGroupKey
Type: object
Title: UserGroupKey
Show Source
  • The unique identifier of the corresponding userGroup from an external system. You can use the External ID with the ExternalType parameter to connect user groups in the internal and the the external systems.

  • The ExternalType is the type of the corresponding userGroup from an external system.

  • links
  • The localized name of the user group. The name field can only be used for sorting.

  • The unique identifier from the TAG table that represent a userGroups resource

  • The non localized name of the user group

  • Stripe for UserGroup

Back to Top

Examples

The following example shows how to find a list of User Group objects associated with the specified Content Type object by submitting a get request on the REST resource using cURL.

curl -X GET "https://<IM_REST_API_HOST>/km/api/latest/contentTypes/{id}/userGroups" -u "<username:password>" -H "Accept: application/json" -H "Content-Type: application/json"

Example of Response Body

The following example shows the contents of the response body in JSON format:

{
    "items": [
        {
            "recordId": "BDEE31CAA50A4DA7B9789240028BA4E3",
            "referenceKey": "INTERNAL",
            "name": "Internal",
            "links": [
                {
                    "rel": "canonical",
                    "href": "http://IM_REST_API_HOST/km/api/latest/userGroups/BDEE31CAA50A4DA7B9789240028BA4E3",
                    "mediaType": "application/json, application/xml",
                    "method": "GET"
                },
                {
                    "rel": "collection",
                    "href": "http://IM_REST_API_HOST/km/api/latest/userGroups",
                    "mediaType": "application/json, application/xml",
                    "method": "GET",
                    "profile": "http://IM_REST_API_HOST/km/api/latest/metadata-catalog/userGroups"
                }
            ]
        }
    ],
    "hasMore": false,
    "limit": 20,
    "offset": 0,
    "links": [
        {
            "rel": "canonical",
            "href": "http://IM_REST_API_HOST/km/api/latest/contentTypes/SOLUTION/userGroups?limit=20&offset=0",
            "mediaType": "application/json, application/xml",
            "method": "GET"
        }
    ],
    "count": 1
}
Back to Top