Skip to main content
POST
/
admin
/
users
/
change-log
Get user change log
curl --request POST \
  --url https://api.fluxer.app/v1/admin/users/change-log \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "user_id": "<string>",
  "limit": 100.5,
  "page_token": "<string>"
}
'
{
  "entries": [
    {
      "event_id": "<string>",
      "field": "<string>",
      "old_value": "<string>",
      "new_value": "<string>",
      "reason": "<string>",
      "actor_user_id": "<string>",
      "event_at": "<string>"
    }
  ],
  "next_page_token": "<string>"
}

Authorizations

Authorization
string
header
required

Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.

Body

application/json
user_id
string<snowflake>
required
limit
number

Maximum number of entries to return

Required range: 1 <= x <= 200
page_token
string

Pagination token for the next page of results

Response

Success

entries
object[]
required
Maximum array length: 200
next_page_token
string | null
required