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
Members
Get members
Retrieve a list of members for the current account.
GET
/
accounts
/
members
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
200 - application/json
A list of account members.
The response is of type object[]
.
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": {}
}
}
]