acatlan
3 years agoNew Contributor II
Utilizing REST Get to Access Workable API
Hello,
I would like to seek assistance regarding an issue I’m facing with a REST Get snap in my integration workflow. I am using the snap to retrieve candidate data from the Workable API. Here is a...
- 3 years ago
Hey @acatlan ,
As per the workable document link you shared paging.next will contain the URL of the next result set.
You need to make below changes:
- Has next should be an expression or a key that returns true or false. Below expression will check if the path exists in the response.
$.hasPath(“$entity.paging.next”)
In the Next URL, you need to use the URL that was provided in the $entiity.paging.next.
You may need to adjust the URL or the expression as per your need.
I hope this helps.