I have an Insight object schema, with an Object in it, called Computer.
This Computer object has 4 fields:
All of these fields, except the one called "Name" are empty, and I have to give them value from a separate API endpoint.
I need the "Name" attribute to identify the Computer in the POST request sent to the separate API endpoint, and I need one request for each of the 3 fields I want to populate ( CPU,RAM, Owner),
For example, a request I can make looks like this:
https://separateAPI/api/{{computerName}}/Ram/
which returns the RAM of the computer I'm looking for.
So the problem is, I have lot's of Computers, I am looking for a way to automate sending the API requests for each Computer I have.
After some time of tweaking Automation for Jira, I am starting to think it's not the right tool for this, because I have to manually configure each API request sent out, as an action.
I am looking for an answer, if there is any way to achieve this in Automation in Jira, or which other tool would be able to help me? Or is it the worst case scenario, and I should write my own application for this?