03-07-2023 06:55 PM
I am using REST Get snap and pagination is not working.
Sample output
“entity” : {
“@odata.context” : “https://test-odata.com/at.odata/v2.0/$metadata_65687877”,
“value” : ,
“@odata.nextLink”“https://test-odata.com/at.odata/latest/&%24top=20000&$skip=10000&$skiptoken=2”
},
03-07-2023 08:36 PM
You need to enable the expressions to evaluate
03-08-2023 07:13 AM
It gives error
03-08-2023 07:29 AM
Hello @deepthi.chidi,
Try with the following expression:
Has next:
$entity['@odata'].nextLink != null
Next URL:
$entity['@odata'].nextLink
Let me know if this helps you.
BR,
Aleksandar.
03-09-2023 09:48 AM
Hello @AleksandarAngelevski ,
It didn’t work , here is the error