GET simplifiedShippingSettings: Retrieve account and fulfillment center configurations
The GET simplifiedShippingSettings endpoint allows sellers to retrieve both account and fulfillment center level configurations.
Sample Response
Name | Type | Description |
---|---|---|
accountConfigs | object | Account configuration to be set for a seller, comprising of Carrier configurations and Region configurations. |
shipNodeConfigs | Array of Objects | Comprising of List of all Fulfillment Center Ids and their configurations |
PUT account: Update account configurations (Select to expand)
{ "simplifiedShippingSettings": { "accountConfigs": { "shippingPriority": "FASTEST", "carrierConfigs": [ { "configurations": [ { "regions": [ { "regionCode": "P", "regionName": "US Protectorates" }, { "regionCode": "C", "regionName": "48 State" } ], "addressTypes": [ "STREET", "PO_BOX" ] } ], "carriers": [ { "carrierName": "Fedex", "carrierService": "FEDEX_OVERNIGHT" } ] }, { "configurations": [ { "regions": [ { "regionCode": "H", "regionName": "AK and HI" } ], "addressTypes": [ "STREET" ] }, { "regions": [ { "regionCode": "C", "regionName": "48 State", "subRegions": [ { "subRegionCode": "WE", "states": [ { "stateCode": "NV", "stateName": "Nevada" }, { "stateCode": "CA", "stateName": "California" } ] } ] } ], "addressTypes": [ "STREET" ] } ], "carriers": [ { "carrierName": "Fedex", "carrierService": "FEDEX_EXPRESS" } ] } ] }, "shipNodeConfigs": [ { "shipNodes": [ "10900042937", "674599638306885633", "678136195315892225", "719075639194456065", "527428727372726273", "677756819709591553", "677756464221356033", "678134571868585985", "1234567616356" ], "isOverridden": false }, { "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" } ] } ] } ] }
}
Updated 3 days ago