Created
March 21, 2025 15:14
-
-
Save simonc/be316638647187a6121bc98ec08e6e0a to your computer and use it in GitHub Desktop.
ActivePieces PDF download bug demo workflow
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"created": "1742569907640", | |
"updated": "1742569907640", | |
"name": "pdf-download", | |
"description": "", | |
"tags": [], | |
"pieces": [ | |
"@activepieces/piece-forms", | |
"@activepieces/piece-http", | |
"@activepieces/piece-file-helper" | |
], | |
"template": { | |
"displayName": "pdf-download", | |
"trigger": { | |
"name": "trigger", | |
"valid": true, | |
"displayName": "Web Form", | |
"type": "PIECE_TRIGGER", | |
"settings": { | |
"pieceName": "@activepieces/piece-forms", | |
"pieceVersion": "~0.4.2", | |
"pieceType": "OFFICIAL", | |
"packageType": "REGISTRY", | |
"input": { | |
"waitForResponse": false, | |
"inputs": [ | |
{ | |
"displayName": "Test", | |
"type": "text", | |
"description": "", | |
"required": true | |
} | |
] | |
}, | |
"inputUiInfo": { | |
"customizedInputs": {} | |
}, | |
"triggerName": "form_submission" | |
}, | |
"nextAction": { | |
"displayName": "Send HTTP request", | |
"name": "step_1", | |
"valid": true, | |
"skip": false, | |
"type": "PIECE", | |
"settings": { | |
"pieceName": "@activepieces/piece-http", | |
"pieceType": "OFFICIAL", | |
"packageType": "REGISTRY", | |
"actionName": "send_request", | |
"pieceVersion": "~0.6.2", | |
"input": { | |
"method": "GET", | |
"url": "https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf", | |
"headers": {}, | |
"queryParams": {}, | |
"body_type": null, | |
"body": {}, | |
"use_proxy": false, | |
"proxy_settings": {}, | |
"failsafe": false | |
}, | |
"errorHandlingOptions": { | |
"continueOnFailure": { | |
"value": false | |
}, | |
"retryOnFailure": { | |
"value": false | |
} | |
}, | |
"inputUiInfo": { | |
"customizedInputs": {} | |
} | |
}, | |
"nextAction": { | |
"displayName": "Create file", | |
"name": "step_2", | |
"valid": true, | |
"skip": false, | |
"settings": { | |
"pieceName": "@activepieces/piece-file-helper", | |
"pieceType": "OFFICIAL", | |
"packageType": "REGISTRY", | |
"actionName": "createFile", | |
"pieceVersion": "~0.1.5", | |
"input": { | |
"content": "{{step_1['body']}}", | |
"fileName": "dummy.pdf", | |
"encoding": "binary" | |
}, | |
"errorHandlingOptions": { | |
"continueOnFailure": { | |
"value": false | |
}, | |
"retryOnFailure": { | |
"value": false | |
} | |
}, | |
"inputUiInfo": { | |
"customizedInputs": {} | |
} | |
}, | |
"type": "PIECE" | |
} | |
} | |
}, | |
"valid": true, | |
"schemaVersion": "1" | |
}, | |
"blogUrl": "" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment