Authenticated: Commerce/Transactions/History
Seems like a documentation issue. The endpoint is actually paginated, and respects both the page_size and page query parameters. Try using ?page_size=200&page=0 to start, then increment page until it stops returning results.
I’m trying this:
https://api.guildwars2.com/v2/commerce/transactions/history/buys?page_size=200&page=0?access_token=[API_KEY]
And gettings this:
{"text":“endpoint requires authentication”}
That second ? should be an &, e.g.
https://api.guildwars2.com/v2/commerce/transactions/history/buys?page_size=200&page=0&access_token=[API_KEY]
Thank you for the answer!
It’s working as I expected.