Invoke GetAppcredentials workflow: Object reference not set to an instance of an object

Hi @Dinesh_Babu_S,

I tested the get credentials workflow and the place where you invoke it (Initialization) where the asset name is polled from in_Config(“credentials”).ToString

In both cases, I do get the Credentials from my cloud Orchestrator as below:

image

Your config.xlsx file has the correct value (“ACMELogin”) for the “credentials” key without extra spaces. So in_Config("credentials").ToString is going to work fine. But in the future you can also use in_Config("credentials").ToString.Trim this way you know that if by mistake your excel config file has values with extra spaces, the .trim method will remove it and initialization will work.

  1. Can you ensure that your Asset Name does not have any extra space in the end and is the same as the value in your config file?
  • “ACMELogin” :white_check_mark:
  • " ACMELogin" :x:
  • " ACMELogin " :x:
  • "ACMELogin " :x:
  1. Can you also ensure your asset has been created in the correct Tennant/Folder in orchestrator?
1 Like