Method: NgrokAPI::Services::ApplicationUsersClient#list

Defined in:
lib/ngrokapi/services/application_users_client.rb

#list(before_id: nil, limit: nil, url: nil) ⇒ NgrokAPI::Models::Listable

List all application users for this account.

https://ngrok.com/docs/api#api-application-users-list

Parameters:

  • before_id (string) (defaults to: nil)
  • limit (string) (defaults to: nil)
  • url (string) (defaults to: nil)

    optional and mutually exclusive from before_id and limit

Returns:



96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# File 'lib/ngrokapi/services/application_users_client.rb', line 96

def list(before_id: nil, limit: nil, url: nil)
  result = @client.list(
    before_id: before_id,
    limit: limit,
    url: url,
    path: PATH
  )

  NgrokAPI::Models::Listable.new(
    client: self,
    attrs: result,
    list_property: LIST_PROPERTY,
    klass: NgrokAPI::Models::ApplicationUser
  )
end