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.

The response is of type object[].