Search global setting change events
Searches for global setting change events with page-number based pagination. Returns totalPages and totalElements for direct page navigation. No filter is required for global setting queries.
Headers
The Content-Type of the request must be application/json.
Include the Accept-Encoding: gzip header to compress responses as a gzipped file.
A custom identifier for tracing the API call. If you specified a tracing identifier in the request headers, Zuora returns the same tracing identifier. Otherwise, Zuora does not set this header.
An entity ID. If you have Zuora Multi-entity enabled and the OAuth token is valid for more than one entity, you must use this header to specify which entity to perform the operation in.
Comma separated IDs. If you have Zuora Multi-Org enabled, you can use this header to specify which orgs to perform the operation in.
Request body
Response
OK
Example response
{
"count": 50,
"firstPageToken": "0",
"lastPageToken": "5",
"nextToken": "1",
"totalPages": 6,
"totalElements": 278,
"events": [
{
"eventId": "c3d4e5f6-a7b8-9012-cdef-234567890123",
"timestamp": "2025-05-28T10:15:30.000Z",
"username": "orgadmin@company.com",
"userId": "d47ac10b-58cc-4372-a567-0e02b2c3d481",
"action": "UPDATE",
"actionDetails": "Role binding updated for user",
"objectType": "ROLE_BINDING",
"objectId": "rb-12345",
"objectname": "Billing Admin Role",
"namespace": "global",
"settingtype": "ROLE_BINDING",
"changetype": "MODIFY",
"transactionid": "txn-abc123"
}
]
}