I have a hard time figuring out how to set up the HTTP module for a API Key Auth request. I have generated a api token from the service provider which is xxxxxxxxxx.
My aim is to retrieve a list of listed items from the data source and publish them to a google sheet.
Thank you, yes I was figuring that this was needed after reading a lot of posts and documentation. Been trying to set it up, and got it to create several rows in the google sheet but for each header it returned the same value so I still have some configuration to do. I’ll attach some screenshots of the scenario and result.
I was also trying to post in the Professional Services but for some reason I am not allowed to create a new topic there.
So the data you are mapping in your google sheet comes from the HTTP module, and this seems to be an array of data. If you use an array as variable within your scenario, it will always only use a certain index of the array, which means it will always be the same data.
If you would like to iterate over the array, use an iterator and then map the values from the iterator and not the HTTP module. This way it will have the correct data
Although now working, data is retrieved and posted into columns in google sheet via an Iterator, it only retrieves 10 collections (rows), and there are 316 available. Seems like this must be a default setting somewhere that I am missing.
@Daniel_Lof no this is not a setting, this is how the Teamtailor API was build.
Every “List jobs” request outputs 10 records within the array, and a “links” object which will contain the next page. If you want mulitple / all records you will have to iterate over the amount of next pages.