Skip to content
  • Auto
  • Light
  • Dark
Get Started

Create

Search
post/api/v1/search/apps

Search apps based on filters specified in the request body.

Body Parameters
appIdsarray of string
optional

A list of app IDs to restrict the search to.

displayNamestring
optional

Search for apps with a case insensitive match on the display name.

excludeAppIdsarray of string
optional

A list of app IDs to remove from the results.

onlyDirectoriesboolean
optional

Only return apps which are directories

pageSizenumber
optional

The pageSize where 0 <= pageSize <= 100. Values < 10 will be set to 10. A value of 0 returns the default page size (currently 25)

formatint32
pageTokenstring
optional

The pageToken field.

querystring
optional

Query the apps with a fuzzy search on display name and description.

Returns
listarray of idstringappAccountIdstringappAccountNamestringappOwnersarray of C1APIUserV1UsercertifyPolicyIdstringconnectorVersionnumbercreatedAtstringdefaultRequestCatalogIdstringdeletedAtstringdescriptionstringdisplayNamestringfieldMaskstringgrantPolicyIdstringiconUrlstringidentityMatchingenuminstructionsstringisDirectorybooleanisManuallyManagedbooleanlogoUristringmonthlyCostUsdnumberparentAppIdstringrevokePolicyIdstringstrictAccessEntitlementProvisioningbooleanupdatedAtstringuserCountstringC1APIAppV1App
optional

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

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 retreived. 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/search/apps \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY"
200 Example
{
  "list": [
    {
      "certifyPolicyId": "certifyPolicyId",
      "connectorVersion": 0,
      "defaultRequestCatalogId": "defaultRequestCatalogId",
      "description": "description",
      "displayName": "displayName",
      "grantPolicyId": "grantPolicyId",
      "iconUrl": "iconUrl",
      "identityMatching": "APP_USER_IDENTITY_MATCHING_UNSPECIFIED",
      "instructions": "instructions",
      "isManuallyManaged": true,
      "monthlyCostUsd": 0,
      "revokePolicyId": "revokePolicyId",
      "strictAccessEntitlementProvisioning": true
    }
  ],
  "nextPageToken": "nextPageToken"
}