Im trying to use JIRA activity stream API to fetch all user's activities using this endpoint:
https://<myname>.atlassian.net/activity
for a single user activity i used, https://<myname>.atlassian.net/activity?username=<name>
Now i want to know if i can page through the activities such that activities consumed already are not returned in the response. Using (lets say) 'from', 'per_page', 'next_page_offset' url params.
I tried all params but didnt work. If there is any other , please reply.
the answer is to use startAt and maxResults url params together.
https://<myname>.atlassian.net/activity?startAt=0&maxResults=10
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need maxResults=<an ever increasing number>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.