Core Concepts
Examples
Endpoints
- Accounts
- GETGet user accounts
- GETGet account metadata
- PUTUpdate account
- DELDelete account
- GETGet thumbnail
- Invites
- Members
- Notifications
- Settings
- Subscription
- Workspaces
- History
- Limits
- GET
- Workspaces
- Users
- Authentication
Get members
Retrieve a list of members for the current account.
curl --request GET \
--url https://api.mudstack.com/accounts/members \
--header 'Authorization: Bearer <token>' \
--header 'x-account-id: <x-account-id>'
[
{
"account_id": "<string>",
"user_id": "<string>",
"roles": [
"<string>"
],
"user": {
"id": "<string>",
"auth0UserID": "<string>",
"username": "<string>",
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"avatar_file_id": "<string>",
"defaultAvatar": 123,
"industry": "<string>",
"occupation": "<string>",
"company": "<string>",
"emailVerified": true,
"isActive": true,
"city": "<string>",
"state": "<string>",
"country": "<string>",
"zipCode": "<string>",
"invited_by_user": {}
}
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
Response
The unique identifier of the account.
The unique identifier of the user.
The roles assigned to the user within the account.
The user associated with the account member.
Unique identifier for the user
Auth0 user ID
Username of the user
Email address of the user
First name of the user
Last name of the user
File ID of the user's avatar
Default avatar identifier
Industry the user works in
Occupation of the user
Company the user works for
Whether the user's email is verified
Whether the user is active
City where the user resides
State where the user resides
Country where the user resides
Zip code of the user's location
User who invited this user
Unique identifier for the user
Auth0 user ID
Username of the user
Email address of the user
First name of the user
Last name of the user
File ID of the user's avatar
Default avatar identifier
Industry the user works in
Occupation of the user
Company the user works for
Whether the user's email is verified
Whether the user is active
City where the user resides
State where the user resides
Country where the user resides
Zip code of the user's location
Was this page helpful?
curl --request GET \
--url https://api.mudstack.com/accounts/members \
--header 'Authorization: Bearer <token>' \
--header 'x-account-id: <x-account-id>'
[
{
"account_id": "<string>",
"user_id": "<string>",
"roles": [
"<string>"
],
"user": {
"id": "<string>",
"auth0UserID": "<string>",
"username": "<string>",
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"avatar_file_id": "<string>",
"defaultAvatar": 123,
"industry": "<string>",
"occupation": "<string>",
"company": "<string>",
"emailVerified": true,
"isActive": true,
"city": "<string>",
"state": "<string>",
"country": "<string>",
"zipCode": "<string>",
"invited_by_user": {}
}
}
]