When I’m retrieving records using API v8 the record that have been passed are 20 record only.
How can I removed the limit on API request.
I’m using react-native
Here is the code I’m using to retrieve the data:
axios({
url: 'http://website.com/legacy/Api/V8/module/Accounts',
method: 'GET',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json; charset=UTF-8',
'Authorization': 'Bearer ' + this.state.token,
},
})
.then(response => {
var data = response.data.data;
})
.catch(err => {
console.log(err);
});