DonorDrive / PublicAPI

Documentation and Examples for the DonorDrive Public API
MIT License
37 stars 12 forks source link

Pegging to a specific API version doesn't allow sorting to work #49

Closed djotaku closed 3 years ago

djotaku commented 3 years ago

See https://www.extra-life.org/api/teams/55779/participants?orderBy=sumDonations%20DESC?version=1.2 vs https://www.extra-life.org/api/teams/55779/participants?orderBy=sumDonations%20DESC

The second one is properly ordered. The first is not.

timmixell commented 3 years ago

@djotaku , query string arguments should be delimited by & (the first URL you shared has an unescaped ? in the query string). please try:

https://www.extra-life.org/api/teams/55779/participants?orderBy=sumDonations%20DESC&version=1.2