Update Company Data (Advanced)
Use this action when you want to update a record by filter instead of by a fixed ID.
Best for
- Finding one matching record and updating it in the same step
- Upsert patterns where you want to create the record if it does not exist
- Cases where the exact record ID is not known ahead of time
Main fields
| Field | What it does |
|---|---|
| Company data type | Chooses what kind of record to update |
| Filter | Defines which record should be targeted |
| Payload | Defines the fields to change |
| Upsert | Creates a new record if no match is found |
What later steps can use
The updated record is usually available at:
step(N).data
Tips
- Treat this as a "find one matching record, then update it" action.
- Use it when a normal ID-based update would be awkward.
- If you need to review matches before updating, search first and debug the results.