Hi,
CONDITION:
I have created a CarrierService using the Shopify carrier service API(https://shopify.dev/docs/admin-api/rest/reference/shipping-and-fulfillment/carrierservice) after satisfying all requirements. The carrier service was created successfully with ID : 33798553653.
We have tested our rates calculation app through sending postman requests to the call back url (https://script.google.com/macros/s/AKfycbyMgR0FJjaBpX2Ga1YES0yoXaR3mljBzPanIwwFaRtMh-hdrfg/exec) and it was successful. A sample request and response is below:
sample response:
{
“rates”: [
{
“service_name”: “محمول للنقل المبرد”,
“service_code”: “MH”,
“total_price”: “29.00”,
“description”: “خلال 1 الى 3 ايام عمل”,
“currency”: “SAR”
},
{
“service_name”: “سمسا للنقل السريع”,
“service_code”: “4k”,
“total_price”: “29.00”,
“description”: “خلال 1 الى 3 ايام عمل”,
“currency”: “SAR”
}
]
}
ISSUE
When a user is checking out in our store, our web app receives requests from Shopify and the app creates responses similar to the above. However Shopify doesn’t display the shipping options that are there in the response in the shipping section of the checkout. Not sure what the issue is. Would really appreciate having help with this.
Thanks,







