Currently, when attempting to view the /items endpoint with pagination, if the limit is provided but next is omitted then the endpoint returns a 502 Bad Gateway. next=0 should likely be default and implied if omitted.
Fails:
/items?limit=10
Succeeds:
/items?limit=10&next=0
Currently, when attempting to view the
/itemsendpoint with pagination, if thelimitis provided butnextis omitted then the endpoint returns a502 Bad Gateway.next=0should likely be default and implied if omitted.Fails:
/items?limit=10Succeeds:
/items?limit=10&next=0