get https://api.tcgplayer.com/stores//orders//items
Get Order Items.
Returns an array containing a list of all of the items found in an order.
{
"totalItems": integer,
"success": boolean,
"errors": [],
"results": [
{
"skuId": integer,
"price": decimal,
"quantity": integer,
"isCustom": boolean
}
]
}
{
"totalItems": 1,
"success": true,
"errors": [],
"results": [
{
"skuId": 3252880,
"price": 5,
"quantity": 1,
"isCustom": false
}
]
}