cURL
curl --request GET \ --url https://api.gospott.com/users/_list \ --header 'x-api-key: <api-key>'
{ "users": [ { "userId": "<string>", "name": "<string>", "email": "<string>", "avatarUrl": "<string>", "deactivatedAt": "2023-11-07T05:31:56Z" } ] }
Retrieve a list of all active (non-deactivated) users in the tenant. Returns basic user information including ID, name, email, and avatar URL.
API key for authentication. Get your API key from Settings → API Keys in your Spott dashboard.
Successfully retrieved the list of active users.
Array of active users in the tenant
Show child attributes