List
List
List all apps.
Parameters
Hide ParametersShow Parameters
The pageSize field.
The pageToken field.
Returns
The ListAppsResponse message contains a list of results and a nextPageToken if applicable.
Hide ParametersShow Parameters
The list of results containing up to X results, where X is the page size defined in the request.
Hide ParametersShow Parameters
The ID of the app.
The ID of the Account named by AccountName.
The AccountName of the app. For example, AWS is AccountID, Github is Org Name, and Okta is Okta Subdomain.
The owners of the app.
Hide ParametersShow Parameters
A unique identifier of the user.
The id of the user to whom tasks will be automatically reassigned to.
The department which the user belongs to in the organization.
A list of objects mapped based on department attribute mappings configured in the system.
Hide ParametersShow Parameters
The appId field.
The appUserId field.
The appUserProfileAttributeKey field.
The userAttributeMappingId field.
The value field.
A list of unique ids that represent different directories.
The status of the user in the directory.
Hide ParametersShow Parameters
A list of objects mapped based on directoryStatus attribute mappings configured in the system.
Hide ParametersShow Parameters
The appId field.
The appUserId field.
The appUserProfileAttributeKey field.
The userAttributeMappingId field.
The value field.
The display name of the user.
This is the user's email.
This is a list of all of the user's emails from app users.
A list of source data for the email attribute.
Hide ParametersShow Parameters
The appId field.
The appUserId field.
The appUserProfileAttributeKey field.
The userAttributeMappingId field.
The value field.
This is a list of all of the user's employee IDs from app users.
A list of source data for the employee IDs attribute.
Hide ParametersShow Parameters
The appId field.
The appUserId field.
The appUserProfileAttributeKey field.
The userAttributeMappingId field.
The value field.
The users employment status.
A list of objects mapped based on employmentStatus attribute mappings configured in the system.
Hide ParametersShow Parameters
The appId field.
The appUserId field.
The appUserProfileAttributeKey field.
The userAttributeMappingId field.
The value field.
The employment type of the user.
A list of objects mapped based on employmentType attribute mappings configured in the system.
Hide ParametersShow Parameters
The appId field.
The appUserId field.
The appUserProfileAttributeKey field.
The userAttributeMappingId field.
The value field.
The job title of the user.
A list of objects mapped based on jobTitle attribute mappings configured in the system.
Hide ParametersShow Parameters
The appId field.
The appUserId field.
The appUserProfileAttributeKey field.
The userAttributeMappingId field.
The value field.
A list of ids of the user's managers.
A list of objects mapped based on managerId attribute mappings configured in the system.
Hide ParametersShow Parameters
The appId field.
The appUserId field.
The appUserProfileAttributeKey field.
The userAttributeMappingId field.
The value field.
A list of unique identifiers that maps to ConductorOne's user roles let you assign users permissions tailored to the work they do in the software.
The status of the user in the system.
Hide ParametersShow Parameters
The type of the user.
Hide ParametersShow Parameters
This is the user's primary username. Typically sourced from the primary directory.
This is a list of all of the user's usernames from app users.
A list of source data for the usernames attribute.
Hide ParametersShow Parameters
The appId field.
The appUserId field.
The appUserProfileAttributeKey field.
The userAttributeMappingId field.
The value field.
The ID of the Certify Policy associated with this App.
The connectorVersion field.
The ID for the default request catalog for this app.
The app's description.
The app's display name.
The ID of the Grant Policy associated with this App.
The URL of an icon to display for the app.
The identityMatching field.
Hide ParametersShow Parameters
If you add instructions here, they will be shown to users in the access request form when requesting access for this app.
Specifies if the app is a directory.
The isManuallyManaged field.
The URL of a logo to display for the app.
The cost of an app per-seat, so that total cost can be calculated by the grant count.
The ID of the app that created this app, if any.
The ID of the Revoke Policy associated with this App.
The strictAccessEntitlementProvisioning field.
The number of users with grants to this app.
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.
import ConductoroneSDK from 'conductorone-sdk';
const client = new ConductoroneSDK({
apiKey: 'My API Key',
});
const apps = await client.apps.list();
console.log(apps.list);{
"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"
}