How order lookup works

You want to understand how the agent verifies and returns order status before relying on it.

When a shopper asks about an order, the agent doesn't guess — it runs a verified, server-side lookup against your store. Two things must match before any order data is returned.

How it works

  1. The shopper provides their order number and the email address on the order.
  2. Our server looks up the order and checks that the email matches the order. This is deterministic server code — never a judgment call by the AI.
  3. Only if both match does the agent return the order's status and tracking.

This two-factor check is the security boundary: it ensures a shopper can only ever see their own order. There's no way for the agent to be "talked into" revealing an order without a matching email.