Skip to main content

ActorSearchFilter

Case-insensitive substring search across the actor's identifying fields.

Useful for finding every action taken by a specific user or bot without needing to know their exact ID. The search is matched against different fields depending on actor type:

  • Human users (ACCOUNT) — email, first name, and last name.
  • Service accounts (SERVICE_ACCOUNT) — service account name.
  • Deployments (DEPLOYMENT) and system actions (SYSTEM) — the recorded actor ID.

Matching is case-insensitive and uses substring semantics, so search: "alice" will match alice@example.com, Alice Wonderland, and a service account named alice-deploy-bot.

input ActorSearchFilter {
search: String
}

Fields

Substring to look for. Blank or missing values skip this filter.

Member Of

AuditLogsFilter input