I've configured a datasource with an http path of https://company.service.com/api/v1/entities?firm=2. The API uses next page pagination and so I've set those paramters up as well. when I run a query in my base view and look at the execution path, I see the first call is successful (url used is https://company.service.com/api/v1/entities?firm=2&page%5Blimit%5D=500, and if I look at the value of the next link, it is /v1/entities?page[limit]=500&page[after]=3178402. In thesecond call (that is using the next url) there is an error message. this is the url for that call. https://company.service.com/v1/entities?page%5Blimit%5D=500&page%5Bafter%5D=3178402. when the next url is being appended to the configuration url, it is omitting the /api that needs to go in front of /v1. so, how do I get '/api' included in what the next url is appended to?
Thanks for your help