PUT fulfillmentcenter: Override fulfillment center configurations
The PUT fulfillmentcenter endpoint allows a seller to quickly override fulfillment center configurations.
Request Parameters
Name | Required | Type | Description |
---|---|---|---|
shipNodeConfigs | Yes | array of objects | Comprising of List of all Fulfillment Center Ids and their configurations. |
Sample Request
PUT fulfillmentcenter: Override fulfillment center configurations (Select to expand)
{ "simplifiedShippingSettings": { "shipNodeConfigs": [ { "shipNodes": [ "1234567616356" ], "isOverridden": false }, { "shipNodes": [ "1234567616357" ], "isOverridden": true, "carrierConfigs": [ { "carriers": [ { "carrierName": "UPS", "carrierService": "UPS_GROUND" } ], "configurations": [ { "regions": [ { "regionCode": "C", "regionName": "48 State" }, { "regionCode": "H", "regionName": "AK and HI" } ], "addressTypes": [ "STREET", "PO_BOX" ] } ] } ] } ] }
}
Sample Response
Name | Type | Description |
---|---|---|
shipNodeConfigs | array of objects | Comprising of List of all Fulfillment Center Ids and their configurations |
PUT fulfillmentcenter: Override fulfillment center configurations (Select to expand)
{ "simplifiedShippingSettings": { "shipNodeConfigs": [ { "shipNodes": [ "1234567616357" ], "isOverridden": true, "carrierConfigs": [ { "configurations": [ { "regions": [ { "regionCode": "H", "regionName": "AK and HI" }, { "regionCode": "C", "regionName": "48 State" } ], "addressTypes": [ "STREET", "PO_BOX" ] } ], "carriers": [ { "carrierName": "UPS", "carrierService": "UPS_GROUND" } ] } ] }, { "shipNodes": [ "1234567616356" ], "isOverridden": false, "carrierConfigs": [ { "configurations": [ { "regions": [ { "regionCode": "C", "regionName": "48 State", "subRegions": [ { "subRegionCode": "WE", "states": [ { "stateCode": "NV", "stateName": "Nevada" }, { "stateCode": "CA", "stateName": "California" } ] } ] } ], "addressTypes": [ "STREET" ] }, { "regions": [ { "regionCode": "H", "regionName": "AK and HI" } ], "addressTypes": [ "STREET" ] } ], "carriers": [ { "carrierName": "Fedex", "carrierService": "FEDEX_EXPRESS" } ] }, { "configurations": [ { "regions": [ { "regionCode": "P", "regionName": "US Protectorates" }, { "regionCode": "C", "regionName": "48 State" } ], "addressTypes": [ "STREET", "PO_BOX" ] } ], "carriers": [ { "carrierName": "Fedex", "carrierService": "FEDEX_OVERNIGHT" } ] } ] } ] }
}
Updated 3 days ago