We have a requirement to load 2 months of audit log data from this endpoint (<InstanceAddress>/rest/v1/audit/export) . Has anyone ever worked on it before?

When calling audit endpoint using mentioned endpoint in matillion, we're seeing very less no of responses. How I can configure my API Extract Profile or my job to load 2 months of audit log data into Snowflake table.

Hi - it sounds like your api call is limiting the number of elements being returned. You can control the number of elements with the use of the limit parameter as part of the api call:

https://.../rest/v1/audit/export?limit=1000

If the amount of data to return is large then you could make use of the offset parameter to bring back multiple batches of data.