X-Pagination-Limit problem

hi, how can i modify the size of array returned by the response, it is set at 20 and i couldn't modify it here's my code :

var response = await axios.request({ url: '/public/v2/comments', method: 'get', headers:{ 'Authorization': 'Bearer ' + myToken 'x-pagination-limit': 10 // ??? } })

API does not support custom limit feature, records per page are fixed at 20

Now API support custom per page results, you can pass per_page parameter in url.

Ex: per_page=50 (between 1 to 100)


Little markdown supported