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
Name | Required | Type | Description |
---|---|---|---|
accountConfigs | Yes | object | Account configuration to be set for a seller, comprising of Carrier configurations and Region configurations. |
shippingPriority | No | string | Enum: “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. |
migrateEligibleOffers | No | boolean | Flag used to migrate/not migrate all the eligible offers for a seller. |
carrierConfig | No | Array of Objects | Carrier 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
Name | Type | Description |
---|---|---|
accountConfigs | object | Account configuration to be set for a seller, comprising of Carrier configurations and Region configurations. |
shippingPriority | string | Enum: “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. |
migrateEligibleOffers | boolean | Flag used to migrate/not migrate all the eligible offers for a seller. |
carrierConfig | Array of Objects | Carrier 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" ] } ] } ] } }
}
Updated 3 days ago