Skip to content
  • Auto
  • Light
  • Dark
Get Started

Search Feed

Search Grant Feed
post/api/v1/grants/feed

Invokes the c1.api.app.v1.AppEntitlementUserBindingService.SearchGrantFeed method.

Body Parameters
afterstring
optional
formatdate-time
appEntitlementRefsarray of idstringappIdstringAppEntitlementRef
optional

The list of app entitlements to limit the search to.

appRefsarray of object
optional

The list of apps to limit the search to.

Hide ParametersShow Parameters
idstring
optional

The id field.

appUserRefsarray of idstringappIdstringAppUserRef
optional

The list of app users to limit the search to.

beforestring
optional
formatdate-time
expandMaskpathsarray of stringAppEntitlementUserBindingExpandHistoryMask
optional

The AppEntitlementUserBindingExpandHistoryMask message.

pageSizenumber
optional

The pageSize where 10 <= pageSize <= 100, default 25.

formatint32
pageTokenstring
optional

The page_token field for pagination.

userRefsarray of idstringUserRef
optional

The list of C1 users to limit the search to.

Returns
expandedarray of object
optional

The expanded field.

Hide ParametersShow Parameters
@typestring
optional

The type of the serialized message.

listarray of object
optional

The list of results containing up to X results, where X is the page size defined in the request.

Hide ParametersShow Parameters
appPathstring
optional

The appPath field.

appUserPathstring
optional

The appUserPath field.

entitlementPathstring
optional

The entitlementPath field.

feedobject
optional

The AppEntitlementUserBindingFeed message.

Hide ParametersShow Parameters
appEntitlementIdstring
optional

The ID of the app entitlement that the app user has access to

appIdstring
optional

The ID of the app associated with the app entitlement

appUserIdstring
optional

The ID of the app user that has access to the app entitlement

datestring
optional
formatdate-time
eventTypeenum
optional
"GRANT_EVENT_TYPE_UNSPECIFIED" OR "GRANT_EVENT_TYPE_ADDED" OR "GRANT_EVENT_TYPE_REMOVED"

The eventType field.

Hide ParametersShow Parameters
"GRANT_EVENT_TYPE_UNSPECIFIED"
"GRANT_EVENT_TYPE_ADDED"
"GRANT_EVENT_TYPE_REMOVED"
ticketIdstring
optional

The ticketId field.

ticketPathstring
optional

The ticketPath field.

nextPageTokenstring
optional

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.

Request example cURL
curl https://{tenantDomain}.conductor.one/api/v1/grants/feed \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY"
200 Example
{
  "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"
}