You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Passing query param per_page results in different type of said param. per_page is an integer in a normal response but suddenly a string in the response of a request where per_page is passed as a query param.
The text was updated successfully, but these errors were encountered:
a little observation: if I pass a per_page > 250 (which seems to be a hard limit on the backend), I get a normal integer back, even though I passed the param. but param per_page set to eg. 10, gives back a string.
so it seems that a per_page that has been set, is being passed back as a string.
example returning an integer: curl -X GET -G "https://openapi.nkn.org/api/v1/transactions" -H "Content-Type: application/json" -H "Accept: application/json" | jq
Passing query param
per_page
results in different type of said param.per_page
is an integer in a normal response but suddenly a string in the response of a request whereper_page
is passed as a query param.The text was updated successfully, but these errors were encountered: