Open
Description
Issue Summary
When attempting to list the available BulkExport days, the library does not return all records. According to the documentation, if no limit is specified, all records should be returned. It only returns the first 10 records. If you manually specify a page size of 10, the library will return all records.
Code Snippet
This will NOT return all records
client.bulkexports.v1.exports("Messages").days.list()
This will return all records
client.bulkexports.v1.exports("Messages").days.list(page_size=10)
Exception/Log
No exception occurs.
Technical details:
- twilio-python version: 7.12.0
- python version: 3.8.14