cURL
curl --request GET \ --url https://api.ngrok.com/app/users \ --header 'Authorization: Bearer <token>' \ --header 'ngrok-version: <ngrok-version>'
{ "application_users": [ { "id": "<string>", "uri": "<string>", "identity_provider": { "name": "<string>", "url": "<string>" }, "provider_user_id": "<string>", "username": "<string>", "email": "<string>", "name": "<string>", "created_at": "<string>", "last_active": "<string>", "last_login": "<string>" } ], "uri": "<string>", "next_page_uri": "<string>" }
List all application users for this account.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
list of all application users on this account
Show child attributes
unique application user resource identifier
URI of the application user API resource
identity provider that the user authenticated with
name of the identity provider (e.g. Google)
URL of the identity provider (e.g. https://accounts.google.com)
unique user identifier
user username
user email
user common name
timestamp when the user was created in RFC 3339 format
timestamp when the user was last active in RFC 3339 format
timestamp when the user last signed-in in RFC 3339 format
URI of the application user list API resource
URI of the next page, or null if there is no next page
Was this page helpful?