Pagination
Example - Fetching 20 results from total results starting from 10.
Request
Method: POST
Endpoint: /v1.4/search
curl --location 'https://<PA_SEARCH_END_POINT>/v1.4/search' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer cGFTZXXXXXXXXXXXXXXXA==' \
--data '{
***,
"start": 10,
"size": 20,
***
}
Fields
Field Name | Usage |
---|---|
start | Set the index of the result to start from. |
size | Set the number of results per page. Defaults to 20. |