Method: OpenapiClient::TenantsApi#list_tenant_users

Defined in:
lib/openapi_client/api/tenants_api.rb

#list_tenant_users(proj_id, tenant_id, env_id, opts = {}) ⇒ PaginatedResultUserRead

List Tenant Users

Parameters:

  • proj_id (String)

    Either the unique id of the project, or the URL-friendly key of the project (i.e: the "slug").

  • tenant_id (String)

    Either the unique id of the tenant, or the URL-friendly key of the tenant (i.e: the "slug").

  • env_id (String)

    Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the "slug").

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :search (String)

    Text search for the email field

  • :page (Integer)

    Page number of the results to fetch, starting at 1. (default to 1)

  • :per_page (Integer)

    The number of results per page (max 100). (default to 30)

Returns:



342
343
344
345
# File 'lib/openapi_client/api/tenants_api.rb', line 342

def list_tenant_users(proj_id, tenant_id, env_id, opts = {})
  data, _status_code, _headers = list_tenant_users_with_http_info(proj_id, tenant_id, env_id, opts)
  data
end