AuditUserType
Enumeration of actor categories in change history records.
Declaration
string AuditUserTypePossible Values
CUSTOMERA human user acting through the Apple Ads UI.
CUSTOMER_APIAn automated process acting through the Apple Ads Platform API.
APPLE_SUPPORTAn Apple support representative performing an account operation on behalf of an advertiser.
Discussion
The AuditUserType appears in the userType field of AuditSummary and ChangeDetails records. Use it to distinguish manual advertiser-initiated changes from API-driven automation or Apple-initiated actions.
Filter by userType in an AuditQuery to scope results to a specific actor category:
{
"field": "userType",
"operator": "IN",
"value": [
"CUSTOMER_API"
]
}This is especially useful when auditing API-driven changes independently of UI actions.