nextCursor from the response as cursor in the next request to get the next page.curl --location '/api/v1/core/documents/search' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"dateFrom": "2026-06-01",
"dateTo": "2026-06-30",
"limit": 20
}'{
"success": true,
"data": [
{
"documentId": "4704590c-004e-410d-adf7-acb7ca0a7052",
"documentNo": "string",
"documentType": "string",
"issueDate": "2019-08-24",
"status": "string",
"buyer": {
"name": "string",
"taxId": "string"
},
"grandTotal": 0
}
],
"meta": {
"hasMore": true,
"nextCursor": "string"
}
}