GET
Audit/wallets/{walletId}/auditList wallet audit records
Returns audit records associated with the wallet.
Access tierbusiness_auditorRate limit60/minIdempotencynoneAuthenticationBearerAuth
Source
LuxApi/app/Http/Controllers/Api/WalletApiController.php::auditLogLuxPayProjects @ 146e98baa44eParameters
X-Request-IDheaderClient correlation identifier. LuxPay may generate one when omitted.
Example:req_01J...walletIdpathNumeric wallet identifier.
Example:42per_pagequeryPage size.
Example:20pagequeryPage number.
Example:1Code examples
The displayed sandbox host is a placeholder until an official host is provisioned. Never paste a production token into a public browser.
curl --request GET \
--url 'https://sandbox-api.luxpay.example/v1/wallets/42/audit' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'Responses
200Successful response.
statusboolean
Example:
truedataany
{
"status": true,
"data": {
"data": [
{
"id": 1,
"event": "wallet_frozen",
"entity_type": "wallet",
"entity_id": 42,
"actor_type": "string",
"actor_id": 1,
"created_at": "2026-07-16T12:00:00Z"
}
],
"current_page": 1,
"last_page": 4,
"per_page": 20,
"total": 73,
"from": 1,
"to": 1
}
}