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