Estimate shipping by address and return list of available shipping methods
application/json
POST
/V1/guest-carts/{cartId}/estimate-shipping-methods
cURL (application/json)
curl \
--request POST 'https://magento2.winkelstraat.mac/rest/all/V1/guest-carts/{cartId}/estimate-shipping-methods' \
--header "Content-Type: application/json" \
--data '{"address":{"id":42,"region":"string","region_id":42,"region_code":"string","country_id":"string","street":["string"],"company":"string","telephone":"string","fax":"string","postcode":"string","city":"string","firstname":"string","lastname":"string","middlename":"string","prefix":"string","suffix":"string","vat_id":"string","customer_id":42,"email":"string","same_as_billing":42,"customer_address_id":42,"save_in_address_book":42,"extension_attributes":{"discounts":[{"discount_data":{"amount":42.0,"base_amount":42.0,"original_amount":42.0,"base_original_amount":42.0},"rule_label":"string","rule_i_d":42}],"gift_registry_id":42,"pickup_location_code":"string"},"custom_attributes":[{"attribute_code":"string","value":"string"}]}}'
curl \
--request POST 'https://magento2.winkelstraat.mac/rest/all/V1/guest-carts/{cartId}/estimate-shipping-methods' \
--header "Content-Type: application/xml"
Request examples
{
"address": {
"id": 42,
"region": "string",
"region_id": 42,
"region_code": "string",
"country_id": "string",
"street": [
"string"
],
"company": "string",
"telephone": "string",
"fax": "string",
"postcode": "string",
"city": "string",
"firstname": "string",
"lastname": "string",
"middlename": "string",
"prefix": "string",
"suffix": "string",
"vat_id": "string",
"customer_id": 42,
"email": "string",
"same_as_billing": 42,
"customer_address_id": 42,
"save_in_address_book": 42,
"extension_attributes": {
"discounts": [
{
"discount_data": {
"amount": 42.0,
"base_amount": 42.0,
"original_amount": 42.0,
"base_original_amount": 42.0
},
"rule_label": "string",
"rule_i_d": 42
}
],
"gift_registry_id": 42,
"pickup_location_code": "string"
},
"custom_attributes": [
{
"attribute_code": "string",
"value": "string"
}
]
}
}
Request examples
<?xml version="1.0" encoding="UTF-8"?>
<root>
<address>
<id type="integer">42</id>
<region>string</region>
<region-id type="integer">42</region-id>
<region-code>string</region-code>
<country-id>string</country-id>
<street type="array">
<street>string</street>
</street>
<company>string</company>
<telephone>string</telephone>
<fax>string</fax>
<postcode>string</postcode>
<city>string</city>
<firstname>string</firstname>
<lastname>string</lastname>
<middlename>string</middlename>
<prefix>string</prefix>
<suffix>string</suffix>
<vat-id>string</vat-id>
<customer-id type="integer">42</customer-id>
<email>string</email>
<same-as-billing type="integer">42</same-as-billing>
<customer-address-id type="integer">42</customer-address-id>
<save-in-address-book type="integer">42</save-in-address-book>
<extension-attributes>
<discounts type="array">
<discount>
<discount-data>
<amount type="float">42.0</amount>
<base-amount type="float">42.0</base-amount>
<original-amount type="float">42.0</original-amount>
<base-original-amount type="float">42.0</base-original-amount>
</discount-data>
<rule-label>string</rule-label>
<rule-i-d type="integer">42</rule-i-d>
</discount>
</discounts>
<gift-registry-id type="integer">42</gift-registry-id>
<pickup-location-code>string</pickup-location-code>
</extension-attributes>
<custom-attributes type="array">
<custom-attribute>
<attribute-code>string</attribute-code>
<value>string</value>
</custom-attribute>
</custom-attributes>
</address>
</root>
Response examples (200)
[
{
"carrier_code": "string",
"method_code": "string",
"carrier_title": "string",
"method_title": "string",
"amount": 42.0,
"base_amount": 42.0,
"available": true,
"extension_attributes": {
"carrier_codes": [
{
"code": "string",
"name": "string"
}
],
"delivery_window_dates": [
{
"carrier_code": "string",
"from": "string",
"to": "string",
"method_title": "string",
"expires": "string"
}
],
"is_pickup_point": true,
"pickup_point": {
"pick_up_point_id": "string",
"carrier_method": "string",
"name": "string",
"address_lines": [
"string"
],
"city": "string",
"state": "string",
"country": "string",
"postal": "string",
"telephone": "string",
"fax": "string"
}
},
"error_message": "string",
"price_excl_tax": 42.0,
"price_incl_tax": 42.0
}
]
Response examples (200)
<?xml version="1.0" encoding="UTF-8"?>
<root type="array">
<root>
<carrier-code>string</carrier-code>
<method-code>string</method-code>
<carrier-title>string</carrier-title>
<method-title>string</method-title>
<amount type="float">42.0</amount>
<base-amount type="float">42.0</base-amount>
<available type="boolean">true</available>
<extension-attributes>
<carrier-codes type="array">
<carrier-code>
<code>string</code>
<name>string</name>
</carrier-code>
</carrier-codes>
<delivery-window-dates type="array">
<delivery-window-date>
<carrier-code>string</carrier-code>
<from>string</from>
<to>string</to>
<method-title>string</method-title>
<expires>string</expires>
</delivery-window-date>
</delivery-window-dates>
<is-pickup-point type="boolean">true</is-pickup-point>
<pickup-point>
<pick-up-point-id>string</pick-up-point-id>
<carrier-method>string</carrier-method>
<name>string</name>
<address-lines type="array">
<address-line>string</address-line>
</address-lines>
<city>string</city>
<state>string</state>
<country>string</country>
<postal>string</postal>
<telephone>string</telephone>
<fax>string</fax>
</pickup-point>
</extension-attributes>
<error-message>string</error-message>
<price-excl-tax type="float">42.0</price-excl-tax>
<price-incl-tax type="float">42.0</price-incl-tax>
</root>
</root>
Response examples (400)
{
"message": "string",
"errors": [
{
"message": "string",
"parameters": [
{
"resources": "string",
"fieldName": "string",
"fieldValue": "string"
}
]
}
],
"code": 42,
"parameters": [
{
"resources": "string",
"fieldName": "string",
"fieldValue": "string"
}
],
"trace": "string"
}
Response examples (400)
<?xml version="1.0" encoding="UTF-8"?>
<root>
<message>string</message>
<errors type="array">
<error>
<message>string</message>
<parameters type="array">
<parameter>
<resources>string</resources>
<fieldName>string</fieldName>
<fieldValue>string</fieldValue>
</parameter>
</parameters>
</error>
</errors>
<code type="integer">42</code>
<parameters type="array">
<parameter>
<resources>string</resources>
<fieldName>string</fieldName>
<fieldValue>string</fieldValue>
</parameter>
</parameters>
<trace>string</trace>
</root>
Response examples (default)
{
"message": "string",
"errors": [
{
"message": "string",
"parameters": [
{
"resources": "string",
"fieldName": "string",
"fieldValue": "string"
}
]
}
],
"code": 42,
"parameters": [
{
"resources": "string",
"fieldName": "string",
"fieldValue": "string"
}
],
"trace": "string"
}
Response examples (default)
<?xml version="1.0" encoding="UTF-8"?>
<root>
<message>string</message>
<errors type="array">
<error>
<message>string</message>
<parameters type="array">
<parameter>
<resources>string</resources>
<fieldName>string</fieldName>
<fieldValue>string</fieldValue>
</parameter>
</parameters>
</error>
</errors>
<code type="integer">42</code>
<parameters type="array">
<parameter>
<resources>string</resources>
<fieldName>string</fieldName>
<fieldValue>string</fieldValue>
</parameter>
</parameters>
<trace>string</trace>
</root>