cURL
curl --request GET \ --url https://api.mudstack.com/users \ --header 'Authorization: Bearer <token>'
{ "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": {} }
Returns the details of the currently authenticated user.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The user details.
User model
Was this page helpful?