Pagination

Some commands may return a very high number of results and overload Jira. To overcome this, commands use pagination by default for most entities (like issues, projects, users, comments, worklogs, etc.) and return the first 20 results.

For these commands, you can specify --maxResults=### parameters to override the number of entities returned and specify your own max result value. ### should be less than 1000, you can specify a very large number and get all the results. To get the other entities, you can use --startAt=### parameter together with --maxResults parameter. The following command returns users 101 to 200.

user get-all --startAt=100 --maxResults=100