The maxResults query string determines how many entries are returned on each page of a large response. This is an optional parameter. The value must be a positive number.
pageToken
string
Token to fetch the next page of data. The maxResults query string is related to the pageToken since maxResults determines how many entries are returned on each page. This is an optional query string. If not specified, the server returns the first page.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-22 UTC."],[[["List all users assigned licenses for a specific product SKU using the provided HTTP request."],["The request requires `productId` and `skuId` as path parameters, identifying the target product and SKU."],["Optional query parameters such as `customerId`, `maxResults`, and `pageToken` allow for filtering and pagination of results."],["Authorization is necessary using the `https://www.googleapis.com/auth/apps.licensing` scope."],["A successful response will return a LicenseAssignmentList containing the user license assignments."]]],["This document details how to retrieve a list of users assigned licenses for a specific product. The core action is a `GET` request to `https://licensing.googleapis.com/apps/licensing/v1/product/{productId}/sku/{skuId}/users`. `productId` and `skuId` are required path parameters, identifying the product and SKU. Optional query parameters include `customerId` to specify the customer, `maxResults` for pagination, and `pageToken` to retrieve subsequent pages. The request body must be empty, and a successful response returns a `LicenseAssignmentList`. This requires the `https://www.googleapis.com/auth/apps.licensing` OAuth scope.\n"]]