I've created a REST data source whose response body contains rows of information and also contains a pagination token to retrieve the next group of X rows. The pagination token must be included in the request body.
APEX has the ability to capture the token and I am able to create a parameter in the request body to include the token, but I am running into two issue:
- APEX wants to include the token as a parameter on the URL of the request, which is throwing an error with the endpoint I am calling
- how can I reference the token value that APEX is capturing in my request body? Does it have an “undocumented” name that I can use as a parameter in my request body?