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 in your ngrok account with optional filtering and pagination support.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
List all application users for this account.
list of all application users on this account
Show child attributes
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?