Pagination in 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:

Hi Tyler Lamparter,

If I add the two items below, will pagination work in Celigo when exporting data from Intacct with pagination? If not, could you please help with this? I tried multiple ways but it's not working.

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?