Hello Alteryx Community!
I'm currently developing a workflow in Alteryx to automate the process of sending a .csv file to a vendor via their API endpoint. Here’s an outline of my approach:
Workflow Overview:
Proposed Workflow Steps:
Using Alteryx Download Tool:
Python Tool for API Integration:
3. Automation and Schedule: The entire workflow will be scheduled to run once a day using Alteryx Scheduler to automate the process of fetching and sending the reports over.
Does this approach sound appropriate? Is there a better way or easier way to do this? Any feedback or suggestions would be greatly appreciated!
Thank you in advance for your insights!
This looks fine. I'm not sure why you wouldn't just use the download tool to post to the API as well.
So, assuming you have some processing steps it would be:
Of course, there may be reasons to use Python for the POST (MFA bypass etc), and if so, then your method is fine.
Thank you for your response KGT! Yes, there some reasons due to which we selected a python tool and was able to get this done, Thank you again!