Which IIQ version are you inquiring about?
8.2p6
Share all details about your problem, including any error messages you may have received.
Hello team!
I’m trying to implement paging in a web services connector for Group Aggregation. This is a snippet of the JSON I get from the endpoint:
{
"group": [
...
],
"paginationInfo": {
"count": 36,
"pagenum": 1,
"pagesize": 25,
"link": [
{
"rel": "next",
"href": "/url/to/next/section/groups?$pagenum=2"
}
]
}
}
How can I retrieve the values from this response to configure paging dynamically?