I have built an API with the following structure:
- An incoming
GET /pricelistrequest. - A Microsoft Business Central lookup for Germany.
- A Microsoft Business Central lookup for Iberia.
- A Microsoft Business Central lookup for Italy.
The API request defines three optional query parameters:
GMBH_NextLink
IBERIA_NextLink
ITA_NextLink
The caller uses these parameters to send the continuation token for each Business Central environment.
Issue 1: Query parameters are not available in later steps
When I test a transformation on the initial API request step, I can see the query parameters:
{
"record": {},
"testMode": true,
"queryParams": {
"GMBH_NextLink": "sample-value",
"IBERIA_NextLink": "sample-value",
"ITA_NextLink": "sample-value"
},
"export": {
"name": "Source API"
}
}
However, when I test a transformation on the next Business Central lookup step, the queryParams object is no longer available:
{
"record": {},
"export": {
"name": "Business Central lookup"
},
"testMode": true,
"settings": {
"connection": {},
"iClient": {},
"export": {}
}
}
I also added a transformation to the initial request step to copy the query parameters into a field on the record. I then returned the complete JSON in the API response so I could inspect all available data.
However, the record remained empty and the queryParams object was still missing:
{
"record": {},
"settings": {
"export": {}
},
"job": {
"type": "export",
"parentJob": {
"type": "flow"
}
},
"headers": {}
}
The same issue occurs when I use only one query parameter, so it does not appear to be caused by having multiple parameters.
The intended pagination flow is:
- The caller requests the first page.
- Celigo calls the three Business Central environments.
- Celigo returns the records and the three continuation tokens.
- The caller sends those tokens back as query parameters in the request URL.
- Celigo uses each token to retrieve the next page from the corresponding Business Central environment.
The caller can send the query parameters, but I cannot access their values in the downstream Business Central lookup steps.
Is it correct that the caller should send these values as query parameters in the URL? If so, how can I access those query parameters in the downstream steps?
Issue 2: Native pagination can exceed the API response-size limit
The Business Central lookup step also includes Celigo’s native paging option under:
Does this API use paging?
This appears to make Celigo continue retrieving pages until all records have been collected.
However, this does not work well for large datasets. If Celigo retrieves too much data, the final API response can exceed the platform’s response-size limit. In our testing, this results in an HTTP 500 error.
For this use case, I need the API to return only one page at a time, together with the continuation token. The caller can then send the token back to request the next page.
Is there a supported way to return one page at a time instead of having Celigo retrieve all pages internally?

