GET
/
users
/
history
curl --request GET \
  --url https://api.mudstack.com/users/history \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "user_id": "<string>",
    "type": "created",
    "record_id": "<string>",
    "data": 123
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
A list of user history records.
id
string

Unique identifier for the user history record.

user_id
string

Unique identifier for the user.

type
enum<string>

Type of the user action.

Available options:
created,
updated,
avatar_created,
avatar_updated,
avatar_removed,
login_successful,
login_failed,
invite_created,
invite_accepted,
invite_rejected,
token_refresh,
user_workspace_member_add,
user_workspace_member_remove,
user_workspace_member_updated,
user_account_member_updated,
user_account_member_remove
record_id
string

Identifier for the related record.

data
number

Additional data related to the user action.