Quote Shipment
The quote shipment resource.
/quoteShipmentList quote shipments
Retrieve a paginated list of quote shipments. Filter, order, and select columns with PostgREST query parameters.
Query parameters
selectstringComma-separated columns to return. Defaults to all.
orderstringColumn to sort by, e.g. `createdAt.desc`.
limitintegerMaximum rows to return.
offsetintegerRows to skip, for pagination.
curl --request GET \
--url 'https://rest.carbon.ms/quoteShipment?select=*&limit=10' \
--header 'Authorization: Bearer <api-key>'[
{
"id": "abc123def456",
"companyId": "xyz789",
"locationId": "xyz789",
"shippingMethodId": "xyz789",
"shippingTermId": "xyz789",
"receiptRequestedDate": "2026-01-01",
"updatedBy": "string",
"updatedAt": "2026-01-01T00:00:00Z"
}
]/quoteShipmentRetrieve a quote shipment
Fetch a single quote shipment by filtering on `id`.
Query parameters
idstringMatch on the quote shipment's `id`, e.g. `eq.{id}`.
curl --request GET \
--url 'https://rest.carbon.ms/quoteShipment?id=eq.%7Bid%7D' \
--header 'Authorization: Bearer <api-key>'{
"id": "abc123def456",
"companyId": "xyz789",
"locationId": "xyz789",
"shippingMethodId": "xyz789",
"shippingTermId": "xyz789",
"receiptRequestedDate": "2026-01-01",
"updatedBy": "string",
"updatedAt": "2026-01-01T00:00:00Z"
}/quoteShipmentCreate a quote shipment
Create a new quote shipment.
Body parameters
locationIdstringReferences location.id
shippingMethodIdstringReferences shippingMethod.id
shippingTermIdstringReferences shippingTerm.id
receiptRequestedDatedatecompanyIdstringrequiredReferences company.id
shippingCostnumberincotermstringincotermLocationstringcurl --request POST \
--url https://rest.carbon.ms/quoteShipment \
--header 'Authorization: Bearer <api-key>' \
--header 'Content-Type: application/json' \
--header 'Prefer: return=representation' \
--data '{"companyId":"xyz789"}'{
"id": "abc123def456",
"companyId": "xyz789",
"locationId": "xyz789",
"shippingMethodId": "xyz789",
"shippingTermId": "xyz789",
"receiptRequestedDate": "2026-01-01",
"updatedBy": "string",
"updatedAt": "2026-01-01T00:00:00Z"
}/quoteShipmentUpdate a quote shipment
Update an existing quote shipment, matched on `id`.
Body parameters
locationIdstringReferences location.id
shippingMethodIdstringReferences shippingMethod.id
shippingTermIdstringReferences shippingTerm.id
receiptRequestedDatedatecompanyIdstringrequiredReferences company.id
shippingCostnumberincotermstringincotermLocationstringcurl --request PATCH \
--url 'https://rest.carbon.ms/quoteShipment?id=eq.%7Bid%7D' \
--header 'Authorization: Bearer <api-key>' \
--header 'Content-Type: application/json' \
--header 'Prefer: return=representation' \
--data '{"locationId":"xyz789"}'{
"id": "abc123def456",
"companyId": "xyz789",
"locationId": "xyz789",
"shippingMethodId": "xyz789",
"shippingTermId": "xyz789",
"receiptRequestedDate": "2026-01-01",
"updatedBy": "string",
"updatedAt": "2026-01-01T00:00:00Z"
}/quoteShipmentDelete a quote shipment
Delete a quote shipment, matched on `id`. Returns 204 No Content.
Query parameters
idstringThe `id` of the quote shipment to delete, e.g. `eq.{id}`.
curl --request DELETE \
--url 'https://rest.carbon.ms/quoteShipment?id=eq.%7Bid%7D' \
--header 'Authorization: Bearer <api-key>'