Item API
Use these APIs to manage your buyback items on ValoreBooks.
Routes
https://test.valorebooks.com/buyback/item (qa)
https://api.valorebooks.com/buyback/item (production)
GET
Get item level detail on orders that have been created
Parameters
Name
Located in
Description
Type
itemIds
query
List of item IDs you want to see information for (max of 10)
String
Responses
200
A list of your items
[
{
"orderId": 2143296,
"itemId": 4299712,
"isbn": "9780321558237",
"status": "accepted",
"statusDateTime": "2016-08-16T07:13:45Z",
"orderDateTime": "2016-08-16T07:12:15Z",
"price": 126.67,
"title": "Campbell Biology (9th Edition)"
},
{
"orderId": 2153279,
"itemId": 3488712,
"isbn": "9780136060482",
"status": "rejected",
"statusDateTime": "2016-08-19T18:40:39Z",
"orderDateTime": "2016-08-19T18:39:02Z",
"price": 78.05,
"title": "Financial Accounting"
}
]
400
Bad Request
No item IDs were provided
Malformed item IDs list
500
Internal Error
GET Get item level detail on orders that have been created
Parameters
Name | Located in | Description | Type |
---|---|---|---|
itemIds | query | List of item IDs you want to see information for (max of 10) | String |
Responses
200 A list of your items
[
{
"orderId": 2143296,
"itemId": 4299712,
"isbn": "9780321558237",
"status": "accepted",
"statusDateTime": "2016-08-16T07:13:45Z",
"orderDateTime": "2016-08-16T07:12:15Z",
"price": 126.67,
"title": "Campbell Biology (9th Edition)"
},
{
"orderId": 2153279,
"itemId": 3488712,
"isbn": "9780136060482",
"status": "rejected",
"statusDateTime": "2016-08-19T18:40:39Z",
"orderDateTime": "2016-08-19T18:39:02Z",
"price": 78.05,
"title": "Financial Accounting"
}
]
400 Bad Request
No item IDs were provided
Malformed item IDs list