I have configured a Zapier automation that triggers a query to Salesforce whenever a user purchases tickets through my applications. The process works like this: a new user buys a ticket, a webhook sends the ticket data to Zapier, which then performs a find query on Salesforce to search for the user’s ID or passport. If no record is found, it creates a new record in Salesforce and maps the ticket details to it. If a record exists, the ticket information should be appended. However, I’m facing an issue where if a new user buys multiple tickets, only the last ticket’s details are being mapped after creating the resource, while information for the other tickets is omitted. This seems to occur because the record lookup is executed in a single cycle, regardless of the number of tickets. Is there a way to implement asynchronous or delayed checks for finding a Salesforce record for each ticket purchased?