⚡ Only 300 spots remaining • Closes in 2d 14h 32m
Your personal file assistant. This workflow powers a Telegram bot. When you send a PDF document to it, the workflow uses a 'Read Binary File' node followed by an 'Edit Image' or OCR node to process the document. It then sends the converted results back to you as a message or new document.
This workflow is pre-configured and ready for deployment. Simply import the JSON template into your n8n instance and configure your credentials.
This is an exclusive blueprint. Copy the JSON below to use it.
PRO TIP
Always test your workflow in a development environment before pushing to production.
{
"nodes": [
{
"parameters": {
"updates": ["message"]
},
"name": "Telegram Webhook",
"type": "n8n-nodes-base.telegramTrigger",
"typeVersion": 1,
"position": [250, 300]
},
{
"parameters": {
"operation": "download",
"fileId": "={{$json[\"message\"][\"document\"][\"file_id\"]}}"
},
"name": "Download PDF",
"type": "n8n-nodes-base.telegram",
"typeVersion": 1,
"position": [450, 300]
},
{
"parameters": {
"operation": "convert",
"format": "jpg"
},
"name": "Convert to JPG",
"type": "n8n-nodes-base.editImage",
"typeVersion": 1,
"position": [650, 300]
},
{
"parameters": {
"chatId": "={{$node[\"Telegram Webhook\"].json[\"message\"][\"chat\"][\"id\"]}}",
"file": "={{$json}}",
"type": "photo"
},
"name": "Send Result",
"type": "n8n-nodes-base.telegram",
"typeVersion": 1,
"position": [850, 300]
}
],
"connections": {
"Telegram Webhook": {
"main": [[{"node": "Download PDF", "type": "main", "index": 0}]]
},
"Download PDF": {
"main": [[{"node": "Convert to JPG", "type": "main", "index": 0}]]
},
"Convert to JPG": {
"main": [[{"node": "Send Result", "type": "main", "index": 0}]]
}
}
}To use this, copy the JSON above and paste it directly onto your n8n canvas.
Join the elite marketers who have offloaded their entire backend to n8n. Get direct support and custom builds in our private forum.