API ReferenceEvent Referenceops.inbox.screening_status_changed.v1

ops.inbox.screening_status_changed.v1

Constant

import { EVENT_NAMES } from "@platform/contracts";
 
EVENT_NAMES.OPS_INBOX_SCREENING_STATUS_CHANGED_V1;

Publishers

Subscribers

No service currently subscribes to this event.

Payload schema

z.object({
  person_id: z.string(),
  brand_id: z.string(),
  previous_status: z.string().nullable(),
  new_status: z.string(),
  changed_by: z.string(),
  changed_at: z.string().datetime(),
}

Delivery semantics

  • At-least-once delivery. Consumers must dedupe by event ID.
  • Fanned out to both NATS (in-cluster) and EventBridge (durable). See Events concept.