POST account: Create account configurations

The POST account endpoint allows sellers to quickly create 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.
shippingPriorityYesstringEnum: “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.
migrateEligibleOffersYesbooleanFlag used to migrate/not migrate all the eligible offers for a seller.
carrierConfigYesArray of ObjectsCarrier configurations to use for shipping. Like carrier details and corresponding region coverage.

Sample Request

POST account: Create account configurations (Select to expand)
{ "simplifiedShippingSettings": { "accountConfigs": { "shippingPriority": "FASTEST", "migrateEligibleOffers": false, "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" ] } ] } ] } }
}

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.
POST account: Create account configurations (Select to expand)
{ "simplifiedShippingSettings": { "accountConfigs": { "shippingPriority": "FASTEST", "migrateEligibleOffers": false, "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" ] } ] } ] } }
}