For the following request straight from the documentation:
/rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/compare/diff{path:.*}?from&to&fromRepo&srcPath&contextLines&whitespace
This is a paged API. This API can also be invoked via a user-centric URL when addressing repositories in personal projects.
----
It says that this is a paged API however it appears that it is not as it still cuts off the response if there diff is too long. If you add in a start= value, it doesn't proceed to the next page and returns the same original truncated data.
Is this a bug in the API or incorrect documentation?
Also the other documentation for when giving a {path:.*} normally follows a forward slash (/)
e.g. diff/{path:.*} whereas this documentation says diff{path:.*}
is this also incorrect documentation?