"I'm using Azure Data Factory to fetch records. How do I ensure each request retrieves distinct (unique) records? For example, if I have 201 records in SalesOrderLine
and want to get all data using an API call without duplicating records each time, how can I ensure it returns the latest data with each request?"
let's say: i have 201 record and i have hit endpoint i will get 100 record but when i request 2nd time it should provide me next 100 unique record . please provide me some example or url request sample.
here is api URL request :
@{concat('https://rest.method.me/api/v1/tables/SalesOrderLine?filter=SORecordIDTxnDate le ''', '2024-05-30T18:00:00', '''&orderby=SORecordIDTxnDate desc&$top=1')
}