Skip to main content

List Workspace Users

GET /public/action/users/list

Lists the users (members) of the workspace.

Authentication: X-API-KEY header (see Authentication).

Request

curl -X GET https://api.withmoxie.com/public/action/users/list \
-H "X-API-KEY: your_api_key_here"

Response

Returns a set of UserAccountMini objects. Each wraps the workspace membership (userType) and the user profile.

[
{
"accountId": 10016,
"userType": "OWNER",
"user": {
"userId": 5567,
"firstName": "Jane",
"lastName": "Doe",
"email": "jane@acme.example",
"phone": "+36 1 234 5678"
}
}
]