Skip to main content
GET
/
user
/
audit
/
{date}
cURL
curl --request GET \
  --url https://api.bunny.net/user/audit/{date} \
  --header 'AccessKey: <api-key>'
{
  "Logs": [
    {
      "Timestamp": "2023-11-07T05:31:56Z",
      "Product": "<string>",
      "ResourceType": "<string>",
      "ResourceId": "<string>",
      "ResourceOwner": "<string>",
      "Action": "<string>",
      "ActorId": "<string>",
      "ActorType": "<string>",
      "Diff": "<string>"
    }
  ],
  "HasMoreData": true,
  "ContinuationToken": "<string>",
  "StartToken": "<string>"
}

Authorizations

AccessKey
string
header
required

API Access Key authorization header

Path Parameters

date
string<date-time>
required

Query Parameters

Product
string[] | null
ResourceType
string[] | null
ResourceId
string[] | null
ActorId
string[] | null
Order
enum<string>
Available options:
Ascending,
Descending
ContinuationToken
string | null
Limit
integer<int32>
Required range: 1 <= x <= 10000

Response

The list of audit log entries

Logs
object[] | null
HasMoreData
boolean
ContinuationToken
string | null
StartToken
string | null