You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Checks if an active ShippingMethod exists for the given Cart. Returns a `200 OK` status if the ShippingMethod exists or a `404 Not Found` otherwise.
32718
+
Checks if an active ShippingMethod exists for the given Cart. If a matching ShippingMethod has `isDefault` set to `true`, it is returned as the first item in the array. Returns a `200 OK` status if the ShippingMethod exists or a `404 Not Found` otherwise.
32717
32719
parameters:
32718
32720
- name: cartId
32719
32721
in: query
@@ -32762,6 +32764,7 @@ paths:
32762
32764
with a `predicate` that matches the given Cart.
32763
32765
Each ShippingMethod contains exactly one ShippingRate with the flag `isMatching` set to `true`.
32764
32766
This ShippingRate is used when the ShippingMethod is [added to the Cart](ctp:api:type:CartSetShippingMethodAction).
32767
+
If a matching ShippingMethod has `isDefault` set to `true`, it is returned as the first item in the array.
32765
32768
parameters:
32766
32769
- name: country
32767
32770
in: query
@@ -32888,6 +32891,7 @@ paths:
32888
32891
If the `currency` parameter is given, then the ShippingMethods must also have a rate defined in the specified currency.
32889
32892
Each ShippingMethod contains at least one ShippingRate with the flag `isMatching` set to `true`.
32890
32893
If the `currency` parameter is given, exactly one ShippingRate will contain it.
32894
+
If a matching ShippingMethod has `isDefault` set to `true`, it is returned as the first item in the array.
0 commit comments