Hi folks, I’m creating an N8N flow that basically converts transcript from json to txt file and then adds the file to a “transcript” field on Clients Airtable base. I’m running into an issue where I can’t use Binary data like Schema. It says “No fields - Items(s) exist, but they’re empty”. I’ve done some research on this and it seems to be the limitation with binary data. But I can’t seem to find a workaround for this issue.
It looks like your topic is missing some important information. Could you provide the following if applicable.
- n8n version:
- Database (default: SQLite):
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Running n8n via (Docker, npm, n8n cloud, desktop app):
- Operating system:
Could you share your workflow JSON?
Hey Hrishikesh, I cant seem to paste my workflow’json in this text, it says 3000 characters is the limit. Ive seen solutions that suggest using a Merge but that doesnt work either
In the Airtable node, change ‘Transcript file’ value {{ $binary.data }}
Or even better reference the node by it’s name so your workflow doesn’t break if you add something in between:
{{ $('Convert to file').item.binary.data }}
Thanks I’ll try that now
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.