curl --request GET \
--url https://api.gospott.com/users/_list \
--header 'x-api-key: <api-key>'{
"users": [
{
"userId": "<string>",
"name": "<string>",
"email": "jsmith@example.com",
"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.
curl --request GET \
--url https://api.gospott.com/users/_list \
--header 'x-api-key: <api-key>'{
"users": [
{
"userId": "<string>",
"name": "<string>",
"email": "jsmith@example.com",
"avatarUrl": "<string>",
"deactivatedAt": "2023-11-07T05:31:56Z"
}
]
}