Supplier Shipping
The supplier shipping resource.
/supplierShippingList supplier shippings
Retrieve a paginated list of supplier shippings. 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/supplierShipping?select=*&limit=10' \
--header 'Authorization: Bearer <api-key>'[
{
"supplierId": "xyz789",
"companyId": "xyz789",
"shippingSupplierId": "xyz789",
"shippingSupplierLocationId": "xyz789",
"shippingSupplierContactId": "xyz789",
"shippingTermId": "xyz789",
"shippingMethodId": "xyz789",
"updatedAt": "2026-01-01T00:00:00Z"
}
]/supplierShippingRetrieve a supplier shipping
Fetch a single supplier shipping by filtering on `supplierId`.
Query parameters
supplierIdstringMatch on the supplier shipping's `supplierId`, e.g. `eq.{id}`.
curl --request GET \
--url 'https://rest.carbon.ms/supplierShipping?supplierId=eq.%7Bid%7D' \
--header 'Authorization: Bearer <api-key>'{
"supplierId": "xyz789",
"companyId": "xyz789",
"shippingSupplierId": "xyz789",
"shippingSupplierLocationId": "xyz789",
"shippingSupplierContactId": "xyz789",
"shippingTermId": "xyz789",
"shippingMethodId": "xyz789",
"updatedAt": "2026-01-01T00:00:00Z"
}/supplierShippingCreate a supplier shipping
Create a new supplier shipping.
Body parameters
shippingSupplierIdstringReferences supplier.id
shippingSupplierLocationIdstringReferences supplierLocation.id
shippingSupplierContactIdstringReferences supplierContact.id
shippingTermIdstringReferences shippingTerm.id
shippingMethodIdstringReferences shippingMethod.id
companyIdstringrequiredReferences company.id
customFieldsobjecttagsarrayincotermstringincotermLocationstringcurl --request POST \
--url https://rest.carbon.ms/supplierShipping \
--header 'Authorization: Bearer <api-key>' \
--header 'Content-Type: application/json' \
--header 'Prefer: return=representation' \
--data '{"companyId":"xyz789"}'{
"supplierId": "xyz789",
"companyId": "xyz789",
"shippingSupplierId": "xyz789",
"shippingSupplierLocationId": "xyz789",
"shippingSupplierContactId": "xyz789",
"shippingTermId": "xyz789",
"shippingMethodId": "xyz789",
"updatedAt": "2026-01-01T00:00:00Z"
}/supplierShippingUpdate a supplier shipping
Update an existing supplier shipping, matched on `supplierId`.
Body parameters
shippingSupplierIdstringReferences supplier.id
shippingSupplierLocationIdstringReferences supplierLocation.id
shippingSupplierContactIdstringReferences supplierContact.id
shippingTermIdstringReferences shippingTerm.id
shippingMethodIdstringReferences shippingMethod.id
companyIdstringrequiredReferences company.id
customFieldsobjecttagsarrayincotermstringincotermLocationstringcurl --request PATCH \
--url 'https://rest.carbon.ms/supplierShipping?supplierId=eq.%7Bid%7D' \
--header 'Authorization: Bearer <api-key>' \
--header 'Content-Type: application/json' \
--header 'Prefer: return=representation' \
--data '{"shippingSupplierId":"xyz789"}'{
"supplierId": "xyz789",
"companyId": "xyz789",
"shippingSupplierId": "xyz789",
"shippingSupplierLocationId": "xyz789",
"shippingSupplierContactId": "xyz789",
"shippingTermId": "xyz789",
"shippingMethodId": "xyz789",
"updatedAt": "2026-01-01T00:00:00Z"
}/supplierShippingDelete a supplier shipping
Delete a supplier shipping, matched on `supplierId`. Returns 204 No Content.
Query parameters
supplierIdstringThe `supplierId` of the supplier shipping to delete, e.g. `eq.{id}`.
curl --request DELETE \
--url 'https://rest.carbon.ms/supplierShipping?supplierId=eq.%7Bid%7D' \
--header 'Authorization: Bearer <api-key>'