Hi, I’m working on an offer directory app. I’ve built some components set up with component parameters that are supposed to populate with data from an API call to an Airtable base. I’ve set up the authorization tokens in the request header of my GET call and added query parameters into my endpoint per my Airtable base’s API documentation. When I test the response, the call is a success and retrieves data from Airtable. However, when I map the recommended JSON paths from the test response into my component parameters, the UI fields don’t populate with the data from the API call, even though I am getting a 200 success response. I’m stuck as to why the data from the call isn’t passing to the component parameters.
Do note that I’m not using custom data types currently because I kept running into an error where there were null values, meaning that the data from the call was not being parsed into the data types I created. That’s why I’m trying to troubleshoot this issue with JSON paths.
Any help or advice would be greatly appreciated. Thank you.