Myntra SandBox Setup
Integration Steps for Connecting Myntra with Eshopbox on Staging
Step 1. Create Myntra connection
1.1. Use the following test seller code credentials:
merchant_id : ASAAESFA
secret_key : 9FgTn0WUlMzR5LVvtAPGej15zz1V59BSIKh7YO
image///
Step 2. Fulfillment Location Configuration:
2.2 Click on toggle to turn on desired location for example we will turn on Pune location. Pop will open ask for “Register Pune with Myntra. if it is already added, please enter the Myntra warehouse ID for Pune. “
You can Add “WH1, WH2 & WH3“ for sandbox purpose.
Step 3. Automation Setup:
3.1. In the Automation settings, enable all steps related to sync inventory levels, creating new orders, create returns, and cancellations.
Step 4. Turn On product availability for Myntra :
4.1 Go to Inventory → All Products → click on desired product → click on availability
you will find list of channels enabled as shown below picture. click on toggle of Myntra.
4.2 Pop will open, will ask for Myntra SKU Id for this product. For sandbox we can map “SKU1,SKU2 and SKU3“.
Step 5. Myntra sandbox self serve guide
Below file consist of self serve guide for sandbox environment of Myntra. it contains all api request curls and the flows. for sandbox use below domain in curls.
Self serve guide : :
Use this domain : https://mockify.myntrainfo.com
Setup for sandbox environment is completed. Now we will move forward to create order.
Order Flow for Myntra Sandbox
Step 1 : Create order in Myntra
Use below curl to create order in Myntra & that will be synced to our system using webhook added in request body:
Curl :
curl --location 'https://mockify.myntrainfo.com/storefront/v4/mock/order' \
--header 'Content-Type: application/json' \
--header 'x-partner-store: Myntra' \
--header 'access_token: <<ACCESS_TOKEN>>' \ // get token from ie_appinstall_connection
--header 'ppmp: true' \
--data '{
"endpoint": {
"url": "https://myntra-dot-eshopbox-wms-staging.el.r.appspot.com/_ah/api/esb/v1/storefront/v4/order/{sellerOrderId}",
"headers": {
"content-type": "application/json",
"refreshToken": "95f796962c12e6d8beb30dd011c8a5de" // get refershToken from ie_app_installation_log
},
"method": "POST"
},
"processingTime": 10,
"skus": [
"SKU2" // SKU for which we want to create order
],
"warehouse": "WH1" // Myntra Location Id for which we want to create order
}'
Query to get token from ie_appinstall_connection
Select * from ie_appinstall_connection iac where id = 4527;
Query to get refershToken from ie_app_installation_log
Select * from ie_app_installation_log iail where appId = 93 and accountSlug ='esh2916';
where id is connection id.
Sample response
{
"partnerResponse": {
"httpCode": 200,
"status": {
"statusType": "SUCCESS",
"statusMessage": "Order created successfully",
"statusCode": 1006
}
},
"statusType": "SUCCESS",
"statusMessage": "Order created successfully.",
"sellerOrderId": "yxyx8qah-pof6-2jnr-hyon-sdlwec7g9kny-uho",
"statusCode": 1006
}
After we hit above api order will be created in myntra and our system as well.
Step 2 : Process order which we have created in our system.
Complete process order flow as create picklist → pick → pack → create manifest …
Step 3 : update order status to shipped using below curl
curl
curl --location --request PUT 'https://mockify.myntrainfo.com/storefront/v4/mock/packet/{packageId}/shipped' \
--header 'Content-Type: application/json' \
--header 'x-partner-store: Myntra' \
--header 'access_token: <<ACCESS_TOKEN>>' \ //similar token as create order request
--data '{
"endpoint": {
"url": "https://myntra-dot-eshopbox-wms-staging.el.r.appspot.com/_ah/api/esb/v1/storefront/v4/packet/57139502202030/shipped",
"headers": {
"content-type": "application/json",
"refreshToken": "95f796962c12e6d8beb30dd011c8a5de" //similar refreshToken as create order request
},
"method": "PUT"
},
"orderLineIds" : ["70644763036"]
}'
you can find orderLineIds
from order details page or you can call getOrderDetailsById myntra api from self serve guide. packageId
is available shipments.packageId
Step 4 : update order status to delivered using below curl
curl :
curl --location --request PUT 'https://mockify.myntrainfo.com/storefront/v4/mock/packet/{packageId}/delivered' \
--header 'Content-Type: application/json' \
--header 'x-partner-store: Myntra' \
--header 'access_token: <<Access_Token>>' \
--data '{
"endpoint": {
"url": "https://myntra-dot-eshopbox-wms-staging.el.r.appspot.com/_ah/api/esb/v1/storefront/v4/packet/49320775464834/delivered",
"headers": {
"content-type": "application/json",
"refreshToken": "95f796962c12e6d8beb30dd011c8a5de"
},
"method": "PUT"
},
"orderLineIds" : []
}'
this will update status of order in eshopbox.
Step 5 : Create Customer Return
use below curl to create customer return :
curl --location 'https://mockify.myntrainfo.com/storefront/v4/mock/return/' \
--header 'Content-Type: application/json' \
--header 'x-partner-store: Myntra' \
--header 'access_token: <<ACCESS_TOKEN>>' \
--data '{
"endpoint": {
"url": "https://myntra-dot-eshopbox-wms-staging.el.r.appspot.com/_ah/api/esb/v1/storefront/v4/return/{returnId}",
"headers": {
"content-type": "application/json",
"refreshToken": "<<REFRESH_TOKEN>>"
},
"method": "POST"
},
"sellerOrderId": "jgjwgux4-ezvq-caub-a5mg-nie7llpgchlk-xz7", // seller order id againts which we want to create return
"orderLineId": "72971968851" // orderLineItemId againts which we want to create return
}'
on success response it will create return for provided order. similarly we can update status of return using step 6.
Step 6 : Update Customer Return
use below curl to create customer return.
curl --location --request PUT 'https://mockify.myntrainfo.com/storefront/v4/mock/return/cus_{returnId}/update' \
--header 'Content-Type: application/json' \
--header 'x-partner-store: Myntra' \
--header 'access_token: <<ACCESS_TOKEN>>' \
--data '{
"url": "https://myntra-dot-eshopbox-wms-staging.el.r.appspot.com/_ah/api/esb/v1/storefront/v4/return/cus_{returnId}/update",
"headers": {
"content-type": "application/json",
"refreshToken": "<<REFRESH_TOKEN>>"
},
"method": "PUT"
}'