I am creating a custom Data Factory Pipeline trigger from a custom Event Grid event. I have created the trigger and the pipeline, and the intent is to pass the values from the trigger to the parameters on the pipeline. They are some ID information that is not included in the CSV files in blob storage I ultimately wish to copy.
However, when I try and map the trigger parameters to the pipeline (while adding the trigger to the pipeline):
sellerId int = @triggerBody().event.data.sellerId
I receive an error on publishing that it must be a string. I tried wrapping it in the expression int() and that didn't work either. I suspect there is some minor syntax discrepancy in play here, and any help appreciated.
Thank you.