Hello Magento Experts,
Recently I have implemented a courier plugin in my magento website. The plugin is "Flickapp". This is a courier plugin for Kuwait. However, when I try to get the courier details through the shipping method API, it doesn't give any response. I cannot find any details related to the courier plugin in the API response.
However, when I have another plugin called "Shipa Delivery" and it gives the details in the response. Here is the API:
URL:
http://sukkr.info/index.php/rest/V1/carts/mine/estimate-shipping-methods
Header : Content-Type: application/json
Authorization: Bearer 131rebjph0obfbk76rl7fabhbb5j20i8
Body : {
"address": {
"region_code": "WA",
"region": "Wafra",
"region_id": 647,
"country_id": "KW",
"street": ["abc new address"],
"postcode": "39289",
"city": "Kuwait City",
"firstname": "ally",
"lastname": "Test",
"customer_id": 350,
"email": "ally1233@gmail.com",
"telephone": "0987654321",
"same_as_billing": 1
}
}
Response: [
{
"carrier_code": "shipadelivery",
"method_code": "shipadelivery",
"carrier_title": "ShipaDelivery Shipping",
"method_title": "Last mile delivery",
"amount": 2.5,
"base_amount": 2.5,
"available": true,
"error_message": "",
"price_excl_tax": 2.5,
"price_incl_tax": 2.5
}
]
Furthermore, I am sending the same details in the body for Flickapp but nothing in response. Here is the image:
Please let me know how to solve this.