Search Feed
Search Grant Feed
Invokes the c1.api.app.v1.AppEntitlementUserBindingService.SearchGrantFeed method.
Body Parameters
The list of app entitlements to limit the search to.
The list of apps to limit the search to.
The list of app users to limit the search to.
The AppEntitlementUserBindingExpandHistoryMask message.
The pageSize where 10 <= pageSize <= 100, default 25.
The page_token field for pagination.
The list of C1 users to limit the search to.
Returns
The expanded field.
The list of results containing up to X results, where X is the page size defined in the request.
The nextPageToken is shown for the next page if the number of results is larger than the max page size. The server returns one page of results and the nextPageToken until all results are retrieved. To retrieve the next page, use the same request and append a pageToken field with the value of nextPageToken shown on the previous page.
curl https://{tenantDomain}.conductor.one/api/v1/grants/feed \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY"{
"expanded": [
{
"@type": "@type"
}
],
"list": [
{
"appPath": "appPath",
"appUserPath": "appUserPath",
"entitlementPath": "entitlementPath",
"feed": {
"appEntitlementId": "appEntitlementId",
"appId": "appId",
"appUserId": "appUserId",
"date": "2019-12-27T18:11:19.117Z",
"eventType": "GRANT_EVENT_TYPE_UNSPECIFIED",
"ticketId": "ticketId"
},
"ticketPath": "ticketPath"
}
],
"nextPageToken": "nextPageToken"
}