DanLocks
2 years agoQrew Trainee
pipeline import with CSV jinja issue
I have a pipeline like:
- Webhook: incoming request
- json body with {"bucket": "some_bucket","key": "processed/some_data.csv","partner": "c1","table_id": "abcdefghi","headers": "a,b,c"}
- json body with
- S3: Lookup an Object
- bucket =
{{a.body_json.bucket}}
- key =
{{a.body_json.key}}
- bucket =
- Quickbase: import with CSV
- table =
{{a.body_json.table_id}}
- merge field =
fixed_merge_field
- csv url =
{{b.file_transfer_handle}}
- first row is headers = True
- header row =
{{a.body_params.headers}}
- table =
First two steps appear to work. Third step does not expand the jinja template and appears to insert a literal string. Is jinja prohibited in certain fields? Do I need some extra magic to make this work?
------------------------------
Dan Locks
------------------------------