Hi Team,
What is the pagination method for exporting data from Sage Intacct?
Hi Team,
What is the pagination method for exporting data from Sage Intacct?
I'm not sure which endpoint you're going to, and I'm not sure if it varies by endpoint, but I took query and list users as an example.
For this, it uses a simple offset body parameter in the XML.
In Celigo, it would look something like this:
I am using the XML below from Celigo to Intacct
<content>
<function controlid="2022-06-13T06:21:56+00:00">
<query>
<object>ARINVOICE</object>
<filter>
<greaterthan>
<field>WHENMODIFIED</field>
<value>{{lastExportDateTime}}</value>
</greaterthan>
</filter>
<select>
<field>TOTALENTERED</field>
<field>SODOCUMENT.DOCNO</field>
<field>WHENCREATED</field>
<field>SODOCUMENT.CREATEDFROM</field>
<field>STATE</field>
<field>DOCNUMBER</field>
</select>
<options>
<showprivate>true</showprivate>
<returnformat>json</returnformat>
</options>
</query>
</function>
</content>
Why are you trying to send in the relative uri and not the body?