I am trying to get licenses using this REST API request “GET /rest/2/vendors/{vendorId}/reporting/licenses” from Atlassian Marketplace downloads per product. I want to get the list of licenses after a specified “lastUpdated” date of the license. Any suggestions on how to do it.
It looks like the curl example for that documentation is not currently being generated correctly. This is what it looks like:
curl --user email@example.com:<api_token> \
--url 'https://localhost:8080/rest/2/vendors/{vendorId}/reporting/licenses'
But it should read:
curl --user email@example.com:<atlassian_account_password> \
--url 'https://marketplace.atlassian.com/rest/2/vendors/{vendorId}/reporting/licenses'
I have tested that with my own account and it seems to work.
1 Like
Hi @joshiru,
Pasting my response here from Developer Support, you may try something like this from your browser to test it:
https://marketplace.atlassian.com/rest/2/vendors/{vendorId}/reporting/licenses?lastUpdated=yyyy-mm-dd
Please do take note that this restricts values on or after lastUpdated
specified.
Cheers,
Anne Calantog
1 Like
Thanks @acalantog this solution worked for me.