I’m doing a GET of an API where in the table there are more than 300 records, when there is a return, only 10 records appear. Where can I change this parameter to return all the information in the table?
Hello there,
You need to add a parameter to increase the limit if it’s available, please check the docs of the API.
Are you using a Airtable API?
1 Like
(upload://us2aviV1V4NYsjdpOnLp8ZbUdUc.png)
This is a test:
var template = `
<style type="text/css">
.tftable {font-size:14px;color:#333333;width:100%;border-width: 1px;border-color: #87ceeb;border-collapse: collapse;}
.tftable th {font-size:18px;background-color:#87ceeb;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;text-align:left;}
.tftable tr {background-color:#ffffff;}
.tftable td {font-size:14px;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;}
.tftable tr:hover {background-color:#e0ffff;}
</style>
<table class="tftable" border="1">
<tr>
<th>Matricula</th>
<th>Nome</th>
</tr>
{{#each response.content}}
<tr>
<td>{{enrolment}}</td>
<td>{{name}}</td>
</tr>
{{/each}}
</table>
`;
pm.visualizer.set(template, {
response: pm.response.json()
});
I only have the return of these 10 records