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
{{ message }}
This repository was archived by the owner on Oct 4, 2024. It is now read-only.
Able to fetch the first 100 orders when running /orders/v0/orders. However, I receive the following error when I try to use the NextToken param to fetch the next pagination of orders:
{
"errors": [
{
"code": "InvalidInput",
"message": "We could not decode your NextToken. Possible reasons include: a transmission error, improper quoting or a truncation problem.",
"details": ""
}
]
}
Here is the GET request I am using to get the next set of orders:
Able to fetch the first 100 orders when running
/orders/v0/orders
. However, I receive the following error when I try to use theNextToken
param to fetch the next pagination of orders:Here is the GET request I am using to get the next set of orders:
I have read other issue regarding
NextToken
+GetOrders
and have tried the following:content-type
fromapplication/json
toapplication/x-www-form-urlencoded
in the headerencodeuricomponent()
to encode theNextToken
before adding it to the params listThe text was updated successfully, but these errors were encountered: