Pagination in list/search modules
Debug pagination issues in list and search modules by creating test records and results
{
"url": "/contacts/filters/{{parameters.filter_id}}",
"method": "GET",
"qs": {
//"per_page": 100
"per_page": 10 //set value for testing
},
"response": {
"output": "{{item.contact}}",
"iterate": "{{body.data.contacts}}",
"limit": "{{parameters.limit}}"
},
"pagination": {
"qs": {
"page": "{{pagination.page}}"
},
"condition": "{{body.data.max_page > body.data.page}}"
}
}Create test records

Test search module


Possible pagination issues:
Last updated

