PUT account: Update account configurations

The PUT account endpoint allows sellers to quickly update account level carrier configurations used across all fulfillment centers.

Request Parameters

NameRequiredTypeDescription
accountConfigsYesobjectAccount configuration to be set for a seller, comprising of Carrier configurations and Region configurations.
shippingPriorityNostringEnum: “SLOWEST” “FASTEST” Shipping priority will help system decide the carrier service for fulfillment in case there are multiple shipping options available for customers with different carrier services in terms of shipping cost and speed.
migrateEligibleOffersNobooleanFlag used to migrate/not migrate all the eligible offers for a seller.
carrierConfigNoArray of ObjectsCarrier configurations to use for shipping. Like carrier details and corresponding region coverage.

Sample Request

PUT account: Update account configurations (Select to expand)
{ "simplifiedShippingSettings": { "accountConfigs": { "carrierConfigs": [ { "carriers": [ { "carrierName": "Fedex", "carrierService": "FEDEX_HOME_DELIVERY" } ], "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_OVERNIGHT" } ], "configurations": [ { "regions": [ { "regionCode": "C", "regionName": "48 State" }, { "regionCode": "P", "regionName": "US Protectorate 6s" } ], "addressTypes": [ "PO_BOX", "STREET" ] } ] } ] } }
}

Sample Response

NameTypeDescription
accountConfigsobjectAccount configuration to be set for a seller, comprising of Carrier configurations and Region configurations.
shippingPrioritystringEnum: “SLOWEST” “FASTEST” Shipping priority will help system decide the carrier service for fulfillment in case there are multiple shipping options available for customers with different carrier services in terms of shipping cost and speed.
migrateEligibleOffersbooleanFlag used to migrate/not migrate all the eligible offers for a seller.
carrierConfigArray of ObjectsCarrier configurations to use for shipping. Like carrier details and corresponding region coverage.
PUT account: Update account configurations (Select to expand)
{ "simplifiedShippingSettings": { "accountConfigs": { "shippingPriority": "FASTEST", "migrateEligibleOffers": true, "carrierConfigs": [ { "carriers": [ { "carrierName": "Fedex", "carrierService": "FEDEX_EXPRESS" } ], "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_OVERNIGHT" } ], "configurations": [ { "regions": [ { "regionCode": "C", "regionName": "48 State" }, { "regionCode": "P", "regionName": "US Protectorate 6s" } ], "addressTypes": [ "PO_BOX", "STREET" ] } ] } ] } }
}