Open API - no advanced information available

Hi UiPath,

using your Automation Hub Open API I do not get access to the advanced information (or assessment customization) from the automations. Most of these questions are mandatory and definetly filled out in the UI.
For every Automation (even the ones in the later phases) the API only results in an empty array:
image
I noticed that there is another property of the automation called “cd_advanced_information” but it is null
image
As you can see the applications array is also empty.

Is this a bug, or do I need to add something to my Token-Setting to get access?

Regards
RPraschma

Hi @RPraschma,

Thanks for reaching out.
The Advanced Information section can be displayed in the Response of the GET Automations API call only if you use the advanced_information parameter in the query.

Your query should look like this

https://automation-hub.uipath.com/api/v1/openapi/automations?page=1&limit=10&advanced_information=true

And the response (advanced information section) should look like this:

 "advanced_information": {
          "questions": [
            {
              "questions": [
                {
                  "question_id": 25,
                  "question_text": "Primary Reason to Automate the Process",
                  "question_response_answers": [
                    {
                      "response_choice_id": 70,
                      "question_id": 25,
                      "response_choice_text": "Cost"
                    }
                  ],
                  "answer_text": "string"
                }
              ]
            }
          ]
        },

Once you have followed the steps above, you will get also the information around the applications used filled in.

Please confirm if after following the steps above you are still encountering the issue.

Thank you!

@Sorin_Stefan_Visan,

thank you for pointing this out.

I seem to have overlooked this part of the documentation completely.

It works fine now.

Regards
Richard

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.