Create App Users
Search
client.search.createAppUsers(SearchCreateAppUsersParamsbody?, RequestOptionsoptions?): expandedunionlistunionnextPageTokenstringSearchCreateAppUsersResponse
post/api/v1/search/app_users
Search app users based on filters specified in the request body.
Parameters
bodyappIdstringappUserDomainsunionappUserIdsunionappUserStatusDetailsunionappUserStatusesunionappUserTypesunionexcludeAppUserIdsunionexpandMaskC1APIAppV1AppUserExpandMaskpageSizenumberpageTokenstringquerystringrefsunionuserIdsunionSearchCreateAppUsersParams
Returns
SearchCreateAppUsersResponse
The AppUserServiceSearchResponse message.
Request example TypeScript
import ConductoroneSDK from 'conductorone-sdk';
const client = new ConductoroneSDK({
apiKey: 'My API Key',
});
const response = await client.search.createAppUsers();
console.log(response.expanded);200 Example
{
"expanded": [
{
"@type": "@type"
}
],
"list": [
{
"appPath": "appPath",
"appUser": {
"appUserType": "APP_USER_TYPE_UNSPECIFIED",
"status": {}
},
"identityUserPath": "identityUserPath",
"lastUsagePath": "lastUsagePath"
}
],
"nextPageToken": "nextPageToken"
}