Grade Items API
Grade Items
API Documentation
Listings API
Product Feed API
Grade Items API
Grade Items API
Grade Items
Endpoint to grade items with specified conditions and notes.
All items sent in a single request should be part of the same shipment.
All items in a single request should be distinct.
POST
/
v1
/
items
/
grade
curl --request POST \
--url https://api.treet-test.co/v1/items/grade \
--header 'Content-Type: application/json' \
--header 'X-Treet-Authentication-Key: <api-key>' \
--header 'X-Treet-Client-Id: <api-key>' \
--data '{
"items": [
{
"id": "c7383262-e266-4b97-a957-40caa69b6a56",
"condition": "GOOD",
"notes": "Loose thread on button",
"images": [
{
"url": "https://example.com/image1.jpg",
"notes": "Front view of the item, see loose thread"
},
{
"url": "https://example.com/image2.jpg"
}
]
}
]
}'
{
"items": [
{
"id": "c7383262-e266-4b97-a957-40caa69b6a56",
"condition": "GOOD",
"notes": "Loose thread on button",
"images": [
{
"url": "<string>",
"notes": "<string>"
}
]
}
]
}
Body
application/json
List of Treet items to condition grade
Treet's Bundle Item ID
Example:
"c7383262-e266-4b97-a957-40caa69b6a56"
Treet's Trade-In Condition
Available options:
NEW_WITH_TAGS
, EXCELLENT
, GOOD
, RECYCLABLE
, DAMAGED
, WRONG_ITEM
, MISSING
Example:
"GOOD"
Item specific grading notes
Example:
"Loose thread on button"
Response
200
application/json
Grade Items response
Treet's Bundle Item ID
Example:
"c7383262-e266-4b97-a957-40caa69b6a56"
Treet's Trade-In Condition
Available options:
NEW_WITH_TAGS
, EXCELLENT
, GOOD
, RECYCLABLE
, DAMAGED
, WRONG_ITEM
, MISSING
Example:
"GOOD"
Item specific grading notes
Example:
"Loose thread on button"
curl --request POST \
--url https://api.treet-test.co/v1/items/grade \
--header 'Content-Type: application/json' \
--header 'X-Treet-Authentication-Key: <api-key>' \
--header 'X-Treet-Client-Id: <api-key>' \
--data '{
"items": [
{
"id": "c7383262-e266-4b97-a957-40caa69b6a56",
"condition": "GOOD",
"notes": "Loose thread on button",
"images": [
{
"url": "https://example.com/image1.jpg",
"notes": "Front view of the item, see loose thread"
},
{
"url": "https://example.com/image2.jpg"
}
]
}
]
}'
{
"items": [
{
"id": "c7383262-e266-4b97-a957-40caa69b6a56",
"condition": "GOOD",
"notes": "Loose thread on button",
"images": [
{
"url": "<string>",
"notes": "<string>"
}
]
}
]
}