Skip to content
  • Auto
  • Light
  • Dark
Get Started

Retrieve App Users

List App Users For User
get/api/v1/apps/{app_id}/users/{user_id}/app_users

Invokes the c1.api.app.v1.AppUserService.ListAppUsersForUser method.

Path Parameters
app_idstring

The appId field.

user_idstring

The userId field.

Query Parameters
page_sizenumber
optional

The pageSize field.

formatint32
page_tokenstring
optional

The pageToken field.

Returns
expandedarray of object
optional

The expanded field.

Hide ParametersShow Parameters
@typestring
optional

The type of the serialized message.

listarray of appPathstringappUserC1APIAppV1AppUseridentityUserPathstringlastUsagePathstringC1APIAppV1AppUserView
optional

The list field.

nextPageTokenstring
optional

The nextPageToken field.

Request example cURL
curl https://{tenantDomain}.conductor.one/api/v1/apps/$APP_ID/users/$USER_ID/app_users \
    -H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY"
200 Example
{
  "expanded": [
    {
      "@type": "@type"
    }
  ],
  "list": [
    {
      "appPath": "appPath",
      "appUser": {
        "appUserType": "APP_USER_TYPE_UNSPECIFIED",
        "status": {}
      },
      "identityUserPath": "identityUserPath",
      "lastUsagePath": "lastUsagePath"
    }
  ],
  "nextPageToken": "nextPageToken"
}