Object Model Agent
Store and retrieve structured objects inside SyncMyOrders.
What it does
- Creates, queries, and updates records in object model schemas defined in your workspace.
Common uses
- Save intermediate results (like imported files or processed orders) for later steps.
- Upsert data so duplicates are avoided.
- Look up related data without calling external systems.
Key actions from the spec
- Create instances, including create-if-not-exists checks.
- Update existing instances with new field values.
- Query instances by property values or check whether an instance exists.
Setup notes
- Provide the target schema name and the field values to store.
- Use idempotent check or create-if-not-exists actions when you want to avoid duplicates.