@Kaniz Fatmaโ @Arvind Ravishโ :
Yes the user can generate the API token but the limit is on the "get jobs" API level in version 2.1.
One workaround that I found is to create a while loop function and pass the offset param variable to "list job" API with value as 25.
Then reiterate and check the json response at every iteration. If the response have a key value pair as {"has_more: False"} then break the loop. Also, at every iteration, keep on appending the job_name or job_id or any other relevant info. from json response in a list.
Finally you will be having a list of all jobs that is visible to the current user.
Alternatively you can use "list job" API version 2.0. This version doesn't have the limit of 25 but it won't return the multi-tasks inside the job and has a hard limit of max 2000 jobs.