Running Alteryx Workflow analytic app on server through API with answer to question (.py)
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi,
I want to run Alteryx analytic app on server through API using python script, but firstly I have to answer to question to text box tool (from interface tools). How to provide answer to this question in Python script? I can not find anything in API documentation.
Thank you in advance for any help / suggestions.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Get the questions: /v1/workflows/{appId}/questions
- Create the JSON with the answers
- Queue the job: /v1/workflows/{appId}/jobs
JSON with the values should look like this:
{ "questions": [ { "name": "Input String", "value": "abcd" } ] }
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi,
Is this still applicable with the latest version of the API (v3)?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Those endpoints are from v1. But it doesn’t matter what is the version. If you have v3 you can still use all from v1 and v2.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi Gabrielviella,
Can you explain the process to run Alteryx Workflow analytic app on server through API with answer to question (.py) in bit more detail.
Like what steps should be followed exactly?
Thanks.
