curl --request GET \
--url https://api.seminode.com/v1/quotes \
--header 'Authorization: <api-key>'[
{
"content": {
"attributes": {
"condition": "<string>",
"custom_attributes": {},
"date_code": "<string>",
"packaging": "<string>"
},
"company": "<string>",
"contact": "<string>",
"errors": {},
"lead_time": 123,
"lead_time_raw": "<string>",
"message": "<string>",
"meta": {},
"qty": 123,
"schema_version": "<string>",
"terms": {
"payment": {
"code": "<string>",
"currency": "<string>"
},
"shipping": {
"incoterm": "<string>",
"place": "<string>"
}
},
"timing": {
"expiry": 123,
"lead_time": "<string>",
"required_date": 123
},
"unit_price": 123
},
"created_at": "<string>",
"id": "<string>",
"kind": 123,
"public_key": "<string>",
"recipient_public_key": "<string>",
"reply_url": "<string>",
"root_id": "<string>",
"sig": "<string>",
"tags": [
[
"<string>"
]
],
"thread_id": "<string>",
"url": "<string>"
}
]Returns the most recent quote per conversation for the callers company.
A conversation is defined as a unique combination of Listing ID, and the unordered pair of author public key and recipient public key. Optional query actioned filters by quotes you sent (true) or received (false).
curl --request GET \
--url https://api.seminode.com/v1/quotes \
--header 'Authorization: <api-key>'[
{
"content": {
"attributes": {
"condition": "<string>",
"custom_attributes": {},
"date_code": "<string>",
"packaging": "<string>"
},
"company": "<string>",
"contact": "<string>",
"errors": {},
"lead_time": 123,
"lead_time_raw": "<string>",
"message": "<string>",
"meta": {},
"qty": 123,
"schema_version": "<string>",
"terms": {
"payment": {
"code": "<string>",
"currency": "<string>"
},
"shipping": {
"incoterm": "<string>",
"place": "<string>"
}
},
"timing": {
"expiry": 123,
"lead_time": "<string>",
"required_date": 123
},
"unit_price": 123
},
"created_at": "<string>",
"id": "<string>",
"kind": 123,
"public_key": "<string>",
"recipient_public_key": "<string>",
"reply_url": "<string>",
"root_id": "<string>",
"sig": "<string>",
"tags": [
[
"<string>"
]
],
"thread_id": "<string>",
"url": "<string>"
}
]Format: "Bearer <access_token>"
true = sent by me, false = received, omitted = both
Was this page helpful?