Summary
Setting up pagination for a custom connector in a self-hosted Airbyte instance to bring Microsoft Dynamics data into BigQuery. Currently syncing one endpoint with 20,000 records but need help implementing pagination for more records.
Question
Hello everyone,
I’m working on setting up a custom connector in my self-hosted Airbyte instance to bring Microsoft Dynamics data into BigQuery. We’re currently syncing one of the endpoints and have successfully retrieved 20,000 records. However, the endpoint contains more than 20,000 records, so we’re looking to implement pagination. I’m having trouble configuring the pagination and would appreciate your help in getting it set up.
API Endpoint we are using: https://api.businesscentral.dynamics.com/v2.0/<tenant_id>/Production/ODataV4/Company(‘<id>’)/G_LBudgetEntries
Response we are getting after hitting the API endpoint:
“@odata.context”: “https://api.businesscentral.dynamics.com/v2.0/<tenant_id>/Production/ODataV4/$metadata#Company(‘<id>’)/G_LBudgetEntries”,
“value”: [ it contains 20,000 records],
“@odata.nextLink”: “https://api.businesscentral.dynamics.com/v2.0/<tenant_id>/Production/ODataV4/Company(‘<id>’)/G_LBudgetEntries
?aid=FIN&$skiptoken=537549”
Any help would be appreciated.
This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. Click here if you want
to access the original thread.