fulfilio / python-magento

Python API to access magento API
BSD 3-Clause "New" or "Revised" License
47 stars 61 forks source link

Fault 1062: 'Shipping method is not available' #29

Open alokumar1 opened 3 years ago

alokumar1 commented 3 years ago

I have checked that this method is available by calling list method

>>>client.cart_shipping.list(cart_id)
[
    {
        "carrier": "purchaseorder",
        "carrier_title": "Purchase Order",
        "code": "purchaseorder_fixed",
        "method": "fixed",
        "method_description": None,
        "price": "0.0000",
        "error_message": None,
        "method_title": "Shipping",
        "carrierName": "Purchase Order"
    },
    {
        "carrier": "freeshipping",
        "carrier_title": "Shipping is pre-paid with UPS and added to your invoice",
        "code": "freeshipping_freeshipping",
        "method": "freeshipping",
        "method_description": None,
        "price": "0.0000",
        "error_message": None,
        "method_title": None,
        "carrierName": "Shipping is pre-paid with UPS and added to your invoice"
    }
]

Please help me I have searched many times but could not find anything, please help.

alokumar1 commented 3 years ago

Is there any solution to it?