openapi: 3.0.1 info: title: Walmart Settings Management description: Settings Management API servers: - url: https://marketplace.walmartapis.com description: Production URL - url: https://sandbox.walmartapis.com description: Sandbox URL security: - basicScheme: [] paths: "/v3/settings/shipping/templates/{templateId}": get: tags: - Settings summary: Walmart Get Shipping Template Details description: Get Shipping Template Details. Details of CUSTOM, DEFAULT and 3PL-specific (eg. DELIVERR) templates can be retrieved through this API. 3PL will be able to see details of only 3PL-specific templates. externalDocs: description: View Guide url: "/doc/us/mp/us-mp-settings/#4777" operationId: getShippingTemplateDetails parameters: - name: templateId in: path description: templateId required: true schema: type: string - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name responses: '200': description: Successful Operation content: application/json: schema: required: - name - rateModelType - shippingMethods - status - type type: object properties: id: type: string description: Shipping Template ID name: pattern: "^[A-Za-z0-9\\s]+$" type: string description: Shipping Template Name type: type: string description: Shipping Template Type, should be CUSTOM or 3PL Specific enum: - DEFAULT - CUSTOM - DELIVERR rateModelType: type: string description: 'This is the shipping model type. TIERED_PRICING: This model means that you charge shipping based on the price of the item PER_SHIPMENT_PRICING: This model means that you charge shipping based on the weight of your items (per pound), or you charge shipping based on the number of items purchased in an order' enum: - TIERED_PRICING - PER_SHIPMENT_PRICING status: type: string description: Shipping Template Status, Can be ACTIVE or INACTIVE status enum: - ACTIVE - INACTIVE shippingMethods: type: array description: Array of different ship methods of a Shipping Template items: required: - configurations - shipMethod - status type: object properties: shipMethod: type: string description: |- | Attribute | Description | Data Type | | ---- | ----------------- | ------- | | VALUE | All Marketplace Sellers must offer Value shipping to Walmart.com customers for items that can't ship within expected transit times for standard shipping. | string | | STANDARD | You are required to offer standard shipping to Walmart.com customers. | string | | TWO_DAY | If approved for this option, you'll provide free 2-day shipping to customers and your items will be enabled with the TwoDay delivery tag. | string | | ONE_DAY | If approved for this option, you can provide free and paid 1-day shipping to customers and your items will be enabled with OneDay delivery. | string | | FREIGHT | Heavy items which takes 6,7,8,9,10 days. | string | enum: - VALUE - STANDARD - THREE_DAY - TWO_DAY - ONE_DAY - FREIGHT status: type: string description: Shipping Method Status, Can be ACTIVE or INACTIVE status enum: - ACTIVE - INACTIVE configurations: type: array description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge items: required: - addressTypes - regions - transitTime type: object properties: regions: type: array description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc items: required: - regionCode type: object properties: regionCode: type: string regionName: type: string subRegions: type: array items: required: - subRegionCode type: object properties: subRegionCode: type: string subRegionName: type: string states: type: array items: required: - stateCode type: object properties: stateCode: type: string stateName: type: string stateSubregions: type: array items: required: - stateSubregionCode type: object properties: stateSubregionCode: type: string stateSubregionName: type: string description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc addressTypes: type: array description: Supported address types like PO_BOX STREET MILITARY items: type: string description: Supported address types like PO_BOX STREET MILITARY enum: - PO_BOX - MILITARY - STREET transitTime: type: integer description: Time in transit format: int32 perShippingCharge: required: - unitOfMeasure type: object properties: unitOfMeasure: type: string description: Unit of Measure eg. LB shippingAndHandling: required: - amount - currency type: object properties: amount: type: number description: 'The numerical amount for that charge. Example: 9.99' currency: type: string description: 'The type of currency for the charge. Example: USD for US Dollars' description: Shipping and Handling Charge chargePerWeight: required: - amount - currency type: object properties: amount: type: number description: Charge Per weight, value USD currency: type: string description: Currency, eg. USD description: Per Item Charge chargePerItem: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Per Weight Charge description: Charge per shipping tieredShippingCharges: type: array description: Tiered Shipping Charges items: required: - maxLimit - minLimit type: object properties: minLimit: type: number description: Minimum Limit maxLimit: type: number description: Maximum Limit shipCharge: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Details of Shipping Charge description: Tiered Shipping Charges description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge description: Array of different ship methods of a Shipping Template createdBy: type: string modifiedBy: type: string createdDate: type: number modifiedDate: type: number example: id: '91235658274476033' name: Next Day servc test type: CUSTOM rateModelType: TIERED_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 10.06 maxLimit: -1 shipCharge: amount: 2 currency: USD - minLimit: 0 maxLimit: 10.05 shipCharge: amount: 1 currency: USD createdDate: 1599589180814 modifiedDate: 1599589209694 put: tags: - Settings summary: Walmart Update Shipping Templates description: Update existing Shipping Template. externalDocs: description: View Guide url: "/doc/us/mp/us-mp-settings/#3643" operationId: updateShippingTemplates parameters: - name: templateId in: path description: templateId required: true schema: type: string - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name requestBody: description: Request fields content: application/json: schema: required: - name - rateModelType - shippingMethods - status - type type: object properties: name: pattern: "^[A-Za-z0-9\\s]+$" type: string description: Shipping Template Name type: type: string description: Shipping Template Type, should be CUSTOM or 3PL Specific enum: - DEFAULT - CUSTOM - DELIVERR rateModelType: type: string description: 'This is the shipping model type. TIERED_PRICING: This model means that you charge shipping based on the price of the item PER_SHIPMENT_PRICING: This model means that you charge shipping based on the weight of your items (per pound), or you charge shipping based on the number of items purchased in an order' enum: - TIERED_PRICING - PER_SHIPMENT_PRICING status: type: string description: Shipping Template Status, Can be ACTIVE or INACTIVE status enum: - ACTIVE - INACTIVE shippingMethods: type: array description: Array of different ship methods of a Shipping Template items: required: - configurations - shipMethod - status type: object properties: shipMethod: type: string description: |- | Attribute | Description | Data Type | | ---- | ----------------- | ------- | | VALUE | All Marketplace Sellers must offer Value shipping to Walmart.com customers for items that can't ship within expected transit times for standard shipping. | string | | STANDARD | You are required to offer standard shipping to Walmart.com customers. | string | | TWO_DAY | If approved for this option, you'll provide free 2-day shipping to customers and your items will be enabled with the TwoDay delivery tag. | string | | ONE_DAY | If approved for this option, you can provide free and paid 1-day shipping to customers and your items will be enabled with OneDay delivery. | string | | FREIGHT | Heavy items which takes 6,7,8,9,10 days. | string | enum: - VALUE - STANDARD - THREE_DAY - TWO_DAY - ONE_DAY - FREIGHT status: type: string description: Shipping Method Status, Can be ACTIVE or INACTIVE status enum: - ACTIVE - INACTIVE configurations: type: array description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge items: required: - addressTypes - regions - transitTime type: object properties: regions: type: array description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc items: required: - regionCode type: object properties: regionCode: type: string regionName: type: string subRegions: type: array items: required: - subRegionCode type: object properties: subRegionCode: type: string subRegionName: type: string states: type: array items: required: - stateCode type: object properties: stateCode: type: string stateName: type: string stateSubregions: type: array items: required: - stateSubregionCode type: object properties: stateSubregionCode: type: string stateSubregionName: type: string description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc addressTypes: type: array description: Supported address types like PO_BOX STREET MILITARY items: type: string description: Supported address types like PO_BOX STREET MILITARY enum: - PO_BOX - MILITARY - STREET transitTime: type: integer description: Time in transit format: int32 perShippingCharge: required: - unitOfMeasure type: object properties: unitOfMeasure: type: string description: Unit of Measure eg. LB shippingAndHandling: required: - amount - currency type: object properties: amount: type: number description: 'The numerical amount for that charge. Example: 9.99' currency: type: string description: 'The type of currency for the charge. Example: USD for US Dollars' description: Shipping and Handling Charge chargePerWeight: required: - amount - currency type: object properties: amount: type: number description: Charge Per weight, value USD currency: type: string description: Currency, eg. USD description: Per Item Charge chargePerItem: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Per Weight Charge description: Charge per shipping tieredShippingCharges: type: array description: Tiered Shipping Charges items: required: - maxLimit - minLimit type: object properties: minLimit: type: number description: Minimum Limit maxLimit: type: number description: Maximum Limit shipCharge: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Details of Shipping Charge description: Tiered Shipping Charges description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge description: Array of different ship methods of a Shipping Template examples: sample1: value: name: Next Day servc test type: CUSTOM rateModelType: TIERED_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 10.06 maxLimit: -1 shipCharge: amount: 2 currency: USD - minLimit: 0 maxLimit: 10.05 shipCharge: amount: 1 currency: USD sample2: value: name: Template 2 type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: NE subRegionName: NE states: - stateCode: CT stateName: Connecticut stateSubregions: - stateSubregionCode: CT2 stateSubregionName: CT_SOUTH_WEST - stateSubregionCode: CT1 stateSubregionName: CT_REST_ALL - stateCode: PA stateName: Pennsylvania stateSubregions: - stateSubregionCode: PA3 stateSubregionName: PA_NORTH_EAST - stateSubregionCode: PA2 stateSubregionName: PA_CENTRAL_NORTH - stateSubregionCode: PA5 stateSubregionName: PA_WEST - stateSubregionCode: PA4 stateSubregionName: PA_SOUTH - stateSubregionCode: PA1 stateSubregionName: PA_CENTRAL - stateCode: MA stateName: Massachusetts stateSubregions: - stateSubregionCode: MA2 stateSubregionName: MA_WEST - stateSubregionCode: MA1 stateSubregionName: MA_EAST - stateCode: RI stateName: Rhode Island stateSubregions: - stateSubregionCode: RI stateSubregionName: RI - stateCode: ME stateName: Maine stateSubregions: - stateSubregionCode: ME2 stateSubregionName: ME_WEST - stateSubregionCode: ME1 stateSubregionName: ME_EAST - stateCode: NH stateName: New Hampshire stateSubregions: - stateSubregionCode: NH stateSubregionName: NH - stateCode: NY stateName: New York stateSubregions: - stateSubregionCode: NY1 stateSubregionName: NY_BROOKLYN - stateSubregionCode: NY3 stateSubregionName: NY_NORTH_CENTRAL - stateSubregionCode: NY2 stateSubregionName: NY_CENTRAL - stateSubregionCode: NY5 stateSubregionName: NY_SOUTH - stateSubregionCode: NY4 stateSubregionName: NY_NORTH_WEST - stateCode: NJ stateName: New Jersey stateSubregions: - stateSubregionCode: NJ2 stateSubregionName: NJ_NORTH - stateSubregionCode: NJ1 stateSubregionName: NJ_CENTRAL - stateSubregionCode: NJ4 stateSubregionName: NJ_KEARNY - stateSubregionCode: NJ3 stateSubregionName: NJ_SOUTH - stateCode: VT stateName: Vermont stateSubregions: - stateSubregionCode: VT stateSubregionName: VT - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST - stateCode: MN stateName: Minnesota stateSubregions: - stateSubregionCode: MN2 stateSubregionName: MN_REST_ALL - stateSubregionCode: MN1 stateSubregionName: MN_CENTRAL_EAST - stateCode: MO stateName: Missouri stateSubregions: - stateSubregionCode: MO3 stateSubregionName: MO_WEST - stateSubregionCode: MO2 stateSubregionName: MO_SOUTH - stateSubregionCode: MO1 stateSubregionName: MO_EAST - stateCode: WI stateName: Wisconsin stateSubregions: - stateSubregionCode: WI2 stateSubregionName: WI_WEST - stateSubregionCode: WI1 stateSubregionName: WI_EAST - stateCode: IL stateName: Illinois stateSubregions: - stateSubregionCode: IL5 stateSubregionName: IL_SOUTHWEST - stateSubregionCode: IL4 stateSubregionName: IL_SOUTHEAST - stateSubregionCode: IL1 stateSubregionName: IL_CHICAGO - stateSubregionCode: IL3 stateSubregionName: IL_NORTH_WEST - stateSubregionCode: IL2 stateSubregionName: IL_NORTH_EAST - stateCode: IN stateName: Indiana stateSubregions: - stateSubregionCode: IN1 stateSubregionName: IN_CENTRAL_AND_EAST - stateSubregionCode: IN3 stateSubregionName: IN_SOUTH - stateSubregionCode: IN2 stateSubregionName: IN_NORTH - stateSubregionCode: IN4 stateSubregionName: IN_WEST - stateCode: ND stateName: North Dakota stateSubregions: - stateSubregionCode: ND stateSubregionName: ND - stateCode: NE stateName: Nebraska stateSubregions: - stateSubregionCode: NE stateSubregionName: NE - stateCode: KS stateName: Kansas stateSubregions: - stateSubregionCode: KS2 stateSubregionName: KS_WEST - stateSubregionCode: KS1 stateSubregionName: KS_EAST - stateCode: IA stateName: Iowa stateSubregions: - stateSubregionCode: IA2 stateSubregionName: IA_REST - stateSubregionCode: IA1 stateSubregionName: IA_CENTRAL - stateCode: OH stateName: Ohio stateSubregions: - stateSubregionCode: OH1 stateSubregionName: OH_CENTRAL - stateSubregionCode: OH3 stateSubregionName: OH_SOUTH_EAST - stateSubregionCode: OH2 stateSubregionName: OH_NORTH - stateSubregionCode: OH4 stateSubregionName: OH_WEST - stateCode: MI stateName: Michigan stateSubregions: - stateSubregionCode: MI2 stateSubregionName: MI_NORTH - stateSubregionCode: MI1 stateSubregionName: MI_CENTRAL - stateSubregionCode: MI3 stateSubregionName: MI_SOUTH_EAST - subRegionCode: SO subRegionName: SO states: - stateCode: DE stateName: Delaware stateSubregions: - stateSubregionCode: DE stateSubregionName: DE - stateCode: TX stateName: Texas stateSubregions: - stateSubregionCode: TX6 stateSubregionName: TX_NORTH_EAST - stateSubregionCode: TX5 stateSubregionName: TX_HOUSTON - stateSubregionCode: TX8 stateSubregionName: TX_SOUTH - stateSubregionCode: TX7 stateSubregionName: TX_NORTH_WEST - stateSubregionCode: TX9 stateSubregionName: TX_SOUTH_EAST - stateSubregionCode: TX10 stateSubregionName: TX_SOUTH_WEST - stateSubregionCode: TX2 stateSubregionName: TX_CENTRAL_NORTH - stateSubregionCode: TX1 stateSubregionName: TX_CENTRAL - stateSubregionCode: TX4 stateSubregionName: TX_DALLAS - stateSubregionCode: TX3 stateSubregionName: TX_CENTRAL_WEST - stateCode: FL stateName: Florida stateSubregions: - stateSubregionCode: FL2 stateSubregionName: FL_CENTRAL_WEST - stateSubregionCode: FL1 stateSubregionName: FL_CENTRAL_EAST - stateSubregionCode: FL4 stateSubregionName: FL_NORTH - stateSubregionCode: FL3 stateSubregionName: FL_MIAMI - stateSubregionCode: FL6 stateSubregionName: FL_SOUTH_WEST - stateSubregionCode: FL5 stateSubregionName: FL_SOUTH_EAST - stateCode: MS stateName: Mississippi stateSubregions: - stateSubregionCode: MS2 stateSubregionName: MS_SOUTH - stateSubregionCode: MS1 stateSubregionName: MS_NORTH - stateCode: AL stateName: Alabama stateSubregions: - stateSubregionCode: AL1 stateSubregionName: AL_NORTH - stateSubregionCode: AL2 stateSubregionName: AL_SOUTH - stateCode: VA stateName: Virginia stateSubregions: - stateSubregionCode: VA1 stateSubregionName: VA_CENTRAL - stateSubregionCode: VA3 stateSubregionName: VA_SOUTH_EAST - stateSubregionCode: VA2 stateSubregionName: VA_NORTH - stateSubregionCode: VA4 stateSubregionName: VA_SOUTH_WEST - stateCode: KY stateName: Kentucky stateSubregions: - stateSubregionCode: KY2 stateSubregionName: KY_WEST - stateSubregionCode: KY1 stateSubregionName: KY_EAST - stateCode: SC stateName: South Carolina stateSubregions: - stateSubregionCode: SC2 stateSubregionName: SC_NORTH - stateSubregionCode: SC1 stateSubregionName: SC_CENTRAL - stateSubregionCode: SC3 stateSubregionName: SC_SOUTH - stateCode: AR stateName: Arkansas stateSubregions: - stateSubregionCode: AR2 stateSubregionName: AR_WEST - stateSubregionCode: AR1 stateSubregionName: AR_EAST - stateCode: LA stateName: Louisiana stateSubregions: - stateSubregionCode: LA1 stateSubregionName: LA_NORTH - stateSubregionCode: LA2 stateSubregionName: LA_SOUTH - stateCode: NC stateName: North Carolina stateSubregions: - stateSubregionCode: NC1 stateSubregionName: NC_EAST - stateSubregionCode: NC3 stateSubregionName: NC_SOUTH - stateSubregionCode: NC2 stateSubregionName: NC_NORTH - stateSubregionCode: NC4 stateSubregionName: NC_WEST - stateCode: MD stateName: Maryland stateSubregions: - stateSubregionCode: MD1 stateSubregionName: MD_CENTRAL - stateSubregionCode: MD2 stateSubregionName: MD_REST_ALL - stateCode: GA stateName: Georgia stateSubregions: - stateSubregionCode: GA2 stateSubregionName: GA_CENTRAL - stateSubregionCode: GA1 stateSubregionName: GA_ATLANTA - stateSubregionCode: GA4 stateSubregionName: GA_NORTH_WEST - stateSubregionCode: GA3 stateSubregionName: GA_NORTH_EAST - stateSubregionCode: GA5 stateSubregionName: GA_SOUTH - stateCode: TN stateName: Tennessee stateSubregions: - stateSubregionCode: TN2 stateSubregionName: TN_EAST - stateSubregionCode: TN1 stateSubregionName: TN_CENTRAL - stateSubregionCode: TN3 stateSubregionName: TN_WEST - stateCode: OK stateName: Oklahoma stateSubregions: - stateSubregionCode: OK2 stateSubregionName: OK_REST_ALL - stateSubregionCode: OK1 stateSubregionName: OK_NORTH_EAST - stateCode: WV stateName: West Virginia stateSubregions: - stateSubregionCode: WV1 stateSubregionName: WV_EAST - stateSubregionCode: WV2 stateSubregionName: WV_WEST - stateCode: DC stateName: District of Columbia stateSubregions: - stateSubregionCode: DC stateSubregionName: DC - subRegionCode: WE subRegionName: WE states: - stateCode: WY stateName: Wyoming stateSubregions: - stateSubregionCode: WY stateSubregionName: WY - stateCode: OR stateName: Oregon stateSubregions: - stateSubregionCode: OR1 stateSubregionName: OR_CENTRAL - stateSubregionCode: OR2 stateSubregionName: OR_NORTH_WEST - stateCode: MT stateName: Montana stateSubregions: - stateSubregionCode: MT stateSubregionName: MT - stateCode: NV stateName: Nevada stateSubregions: - stateSubregionCode: NV2 stateSubregionName: NV_NORTH - stateSubregionCode: NV1 stateSubregionName: NV_LAS_VEGAS - stateSubregionCode: NV3 stateSubregionName: NV_SOUTH - stateCode: AZ stateName: Arizona stateSubregions: - stateSubregionCode: AZ1 stateSubregionName: AZ_NORTH - stateSubregionCode: AZ2 stateSubregionName: AZ_PHOENIX - stateSubregionCode: AZ3 stateSubregionName: AZ_SOUTH - stateCode: WA stateName: Washington stateSubregions: - stateSubregionCode: WA stateSubregionName: WA - stateCode: ID stateName: Idaho stateSubregions: - stateSubregionCode: ID1 stateSubregionName: ID_BOISE_AND_NAMPA - stateSubregionCode: ID2 stateSubregionName: ID_NORTH_AND_EAST - stateCode: CO stateName: Colorado stateSubregions: - stateSubregionCode: CO2 stateSubregionName: CO_REST_ALL - stateSubregionCode: CO1 stateSubregionName: CO_CENTRAL - stateCode: CA stateName: California stateSubregions: - stateSubregionCode: CA13 stateSubregionName: CA_SAN_DIEGO_COUNTY - stateSubregionCode: CA12 stateSubregionName: CA_SAN_DIEGO - stateSubregionCode: CA11 stateSubregionName: CA_SAN_BERNARDINO - stateSubregionCode: CA10 stateSubregionName: "CA_RIVERSIDE_IMPERIAL\t" - stateSubregionCode: CA2 stateSubregionName: CA_CENTRAL_NORTH - stateSubregionCode: CA1 stateSubregionName: CA_CENTRAL - stateSubregionCode: CA4 stateSubregionName: CA_CENTRAL_WEST - stateSubregionCode: CA3 stateSubregionName: CA_CENTRAL_SOUTH - stateSubregionCode: CA6 stateSubregionName: CA_LOS_ANGELES - stateSubregionCode: CA5 stateSubregionName: CA_LONG_BEACH - stateSubregionCode: CA8 stateSubregionName: CA_NORTH - stateSubregionCode: CA7 stateSubregionName: CA_LOS_ANGELES_VENTURA_COUNTY - stateSubregionCode: CA9 stateSubregionName: CA_ONTARIO - stateSubregionCode: CA15 stateSubregionName: CA_SANTA_ANA - stateSubregionCode: CA14 stateSubregionName: CA_SAN_FRANCISCO - stateCode: UT stateName: Utah stateSubregions: - stateSubregionCode: UT1 stateSubregionName: UT_NORTH - stateSubregionCode: UT2 stateSubregionName: UT_SOUTH - stateCode: NM stateName: New Mexico stateSubregions: - stateSubregionCode: NM1 stateSubregionName: NM_CENTRAL - stateSubregionCode: NM2 stateSubregionName: NM_REST_ALL addressTypes: - STREET transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD - regions: - regionCode: C regionName: 48 State addressTypes: - PO_BOX transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD - regions: - regionCode: H regionName: AK and HI - regionCode: P regionName: US Protectorates addressTypes: - PO_BOX - STREET transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD - regions: - regionCode: A regionName: APO/FPO addressTypes: - MILITARY transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD sample3: value: name: Test Template For Doc type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: NE subRegionName: NE states: - stateCode: CT stateName: Connecticut stateSubregions: - stateSubregionCode: CT2 stateSubregionName: CT_SOUTH_WEST - stateSubregionCode: CT1 stateSubregionName: CT_REST_ALL - stateCode: PA stateName: Pennsylvania stateSubregions: - stateSubregionCode: PA3 stateSubregionName: PA_NORTH_EAST - stateSubregionCode: PA2 stateSubregionName: PA_CENTRAL_NORTH - stateSubregionCode: PA5 stateSubregionName: PA_WEST - stateSubregionCode: PA4 stateSubregionName: PA_SOUTH - stateSubregionCode: PA1 stateSubregionName: PA_CENTRAL - stateCode: MA stateName: Massachusetts stateSubregions: - stateSubregionCode: MA2 stateSubregionName: MA_WEST - stateSubregionCode: MA1 stateSubregionName: MA_EAST - stateCode: RI stateName: Rhode Island stateSubregions: - stateSubregionCode: RI stateSubregionName: RI - stateCode: ME stateName: Maine stateSubregions: - stateSubregionCode: ME2 stateSubregionName: ME_WEST - stateSubregionCode: ME1 stateSubregionName: ME_EAST - stateCode: NH stateName: New Hampshire stateSubregions: - stateSubregionCode: NH stateSubregionName: NH - stateCode: NY stateName: New York stateSubregions: - stateSubregionCode: NY1 stateSubregionName: NY_BROOKLYN - stateSubregionCode: NY3 stateSubregionName: NY_NORTH_CENTRAL - stateSubregionCode: NY2 stateSubregionName: NY_CENTRAL - stateSubregionCode: NY5 stateSubregionName: NY_SOUTH - stateSubregionCode: NY4 stateSubregionName: NY_NORTH_WEST - stateCode: NJ stateName: New Jersey stateSubregions: - stateSubregionCode: NJ2 stateSubregionName: NJ_NORTH - stateSubregionCode: NJ1 stateSubregionName: NJ_CENTRAL - stateSubregionCode: NJ4 stateSubregionName: NJ_KEARNY - stateSubregionCode: NJ3 stateSubregionName: NJ_SOUTH - stateCode: VT stateName: Vermont stateSubregions: - stateSubregionCode: VT stateSubregionName: VT - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST - stateCode: MN stateName: Minnesota stateSubregions: - stateSubregionCode: MN2 stateSubregionName: MN_REST_ALL - stateSubregionCode: MN1 stateSubregionName: MN_CENTRAL_EAST - stateCode: MO stateName: Missouri stateSubregions: - stateSubregionCode: MO3 stateSubregionName: MO_WEST - stateSubregionCode: MO2 stateSubregionName: MO_SOUTH - stateSubregionCode: MO1 stateSubregionName: MO_EAST - stateCode: WI stateName: Wisconsin stateSubregions: - stateSubregionCode: WI2 stateSubregionName: WI_WEST - stateSubregionCode: WI1 stateSubregionName: WI_EAST - stateCode: IL stateName: Illinois stateSubregions: - stateSubregionCode: IL5 stateSubregionName: IL_SOUTHWEST - stateSubregionCode: IL4 stateSubregionName: IL_SOUTHEAST - stateSubregionCode: IL1 stateSubregionName: IL_CHICAGO - stateSubregionCode: IL3 stateSubregionName: IL_NORTH_WEST - stateSubregionCode: IL2 stateSubregionName: IL_NORTH_EAST - stateCode: IN stateName: Indiana stateSubregions: - stateSubregionCode: IN1 stateSubregionName: IN_CENTRAL_AND_EAST - stateSubregionCode: IN3 stateSubregionName: IN_SOUTH - stateSubregionCode: IN2 stateSubregionName: IN_NORTH - stateSubregionCode: IN4 stateSubregionName: IN_WEST - stateCode: ND stateName: North Dakota stateSubregions: - stateSubregionCode: ND stateSubregionName: ND - stateCode: NE stateName: Nebraska stateSubregions: - stateSubregionCode: NE stateSubregionName: NE - stateCode: KS stateName: Kansas stateSubregions: - stateSubregionCode: KS2 stateSubregionName: KS_WEST - stateSubregionCode: KS1 stateSubregionName: KS_EAST - stateCode: IA stateName: Iowa stateSubregions: - stateSubregionCode: IA2 stateSubregionName: IA_REST - stateSubregionCode: IA1 stateSubregionName: IA_CENTRAL - stateCode: OH stateName: Ohio stateSubregions: - stateSubregionCode: OH1 stateSubregionName: OH_CENTRAL - stateSubregionCode: OH3 stateSubregionName: OH_SOUTH_EAST - stateSubregionCode: OH2 stateSubregionName: OH_NORTH - stateSubregionCode: OH4 stateSubregionName: OH_WEST - stateCode: MI stateName: Michigan stateSubregions: - stateSubregionCode: MI2 stateSubregionName: MI_NORTH - stateSubregionCode: MI1 stateSubregionName: MI_CENTRAL - stateSubregionCode: MI3 stateSubregionName: MI_SOUTH_EAST - subRegionCode: SO subRegionName: SO states: - stateCode: DE stateName: Delaware stateSubregions: - stateSubregionCode: DE stateSubregionName: DE - stateCode: TX stateName: Texas stateSubregions: - stateSubregionCode: TX6 stateSubregionName: TX_NORTH_EAST - stateSubregionCode: TX5 stateSubregionName: TX_HOUSTON - stateSubregionCode: TX8 stateSubregionName: TX_SOUTH - stateSubregionCode: TX7 stateSubregionName: TX_NORTH_WEST - stateSubregionCode: TX9 stateSubregionName: TX_SOUTH_EAST - stateSubregionCode: TX10 stateSubregionName: TX_SOUTH_WEST - stateSubregionCode: TX2 stateSubregionName: TX_CENTRAL_NORTH - stateSubregionCode: TX1 stateSubregionName: TX_CENTRAL - stateSubregionCode: TX4 stateSubregionName: TX_DALLAS - stateSubregionCode: TX3 stateSubregionName: TX_CENTRAL_WEST - stateCode: FL stateName: Florida stateSubregions: - stateSubregionCode: FL2 stateSubregionName: FL_CENTRAL_WEST - stateSubregionCode: FL1 stateSubregionName: FL_CENTRAL_EAST - stateSubregionCode: FL4 stateSubregionName: FL_NORTH - stateSubregionCode: FL3 stateSubregionName: FL_MIAMI - stateSubregionCode: FL6 stateSubregionName: FL_SOUTH_WEST - stateSubregionCode: FL5 stateSubregionName: FL_SOUTH_EAST - stateCode: MS stateName: Mississippi stateSubregions: - stateSubregionCode: MS2 stateSubregionName: MS_SOUTH - stateSubregionCode: MS1 stateSubregionName: MS_NORTH - stateCode: AL stateName: Alabama stateSubregions: - stateSubregionCode: AL1 stateSubregionName: AL_NORTH - stateSubregionCode: AL2 stateSubregionName: AL_SOUTH - stateCode: VA stateName: Virginia stateSubregions: - stateSubregionCode: VA1 stateSubregionName: VA_CENTRAL - stateSubregionCode: VA3 stateSubregionName: VA_SOUTH_EAST - stateSubregionCode: VA2 stateSubregionName: VA_NORTH - stateSubregionCode: VA4 stateSubregionName: VA_SOUTH_WEST - stateCode: KY stateName: Kentucky stateSubregions: - stateSubregionCode: KY2 stateSubregionName: KY_WEST - stateSubregionCode: KY1 stateSubregionName: KY_EAST - stateCode: SC stateName: South Carolina stateSubregions: - stateSubregionCode: SC2 stateSubregionName: SC_NORTH - stateSubregionCode: SC1 stateSubregionName: SC_CENTRAL - stateSubregionCode: SC3 stateSubregionName: SC_SOUTH - stateCode: AR stateName: Arkansas stateSubregions: - stateSubregionCode: AR2 stateSubregionName: AR_WEST - stateSubregionCode: AR1 stateSubregionName: AR_EAST - stateCode: LA stateName: Louisiana stateSubregions: - stateSubregionCode: LA1 stateSubregionName: LA_NORTH - stateSubregionCode: LA2 stateSubregionName: LA_SOUTH - stateCode: NC stateName: North Carolina stateSubregions: - stateSubregionCode: NC1 stateSubregionName: NC_EAST - stateSubregionCode: NC3 stateSubregionName: NC_SOUTH - stateSubregionCode: NC2 stateSubregionName: NC_NORTH - stateSubregionCode: NC4 stateSubregionName: NC_WEST - stateCode: MD stateName: Maryland stateSubregions: - stateSubregionCode: MD1 stateSubregionName: MD_CENTRAL - stateSubregionCode: MD2 stateSubregionName: MD_REST_ALL - stateCode: GA stateName: Georgia stateSubregions: - stateSubregionCode: GA2 stateSubregionName: GA_CENTRAL - stateSubregionCode: GA1 stateSubregionName: GA_ATLANTA - stateSubregionCode: GA4 stateSubregionName: GA_NORTH_WEST - stateSubregionCode: GA3 stateSubregionName: GA_NORTH_EAST - stateSubregionCode: GA5 stateSubregionName: GA_SOUTH - stateCode: TN stateName: Tennessee stateSubregions: - stateSubregionCode: TN2 stateSubregionName: TN_EAST - stateSubregionCode: TN1 stateSubregionName: TN_CENTRAL - stateSubregionCode: TN3 stateSubregionName: TN_WEST - stateCode: OK stateName: Oklahoma stateSubregions: - stateSubregionCode: OK2 stateSubregionName: OK_REST_ALL - stateSubregionCode: OK1 stateSubregionName: OK_NORTH_EAST - stateCode: WV stateName: West Virginia stateSubregions: - stateSubregionCode: WV1 stateSubregionName: WV_EAST - stateSubregionCode: WV2 stateSubregionName: WV_WEST - stateCode: DC stateName: District of Columbia stateSubregions: - stateSubregionCode: DC stateSubregionName: DC - subRegionCode: WE subRegionName: WE states: - stateCode: WY stateName: Wyoming stateSubregions: - stateSubregionCode: WY stateSubregionName: WY - stateCode: OR stateName: Oregon stateSubregions: - stateSubregionCode: OR1 stateSubregionName: OR_CENTRAL - stateSubregionCode: OR2 stateSubregionName: OR_NORTH_WEST - stateCode: MT stateName: Montana stateSubregions: - stateSubregionCode: MT stateSubregionName: MT - stateCode: NV stateName: Nevada stateSubregions: - stateSubregionCode: NV2 stateSubregionName: NV_NORTH - stateSubregionCode: NV1 stateSubregionName: NV_LAS_VEGAS - stateSubregionCode: NV3 stateSubregionName: NV_SOUTH - stateCode: AZ stateName: Arizona stateSubregions: - stateSubregionCode: AZ1 stateSubregionName: AZ_NORTH - stateSubregionCode: AZ2 stateSubregionName: AZ_PHOENIX - stateSubregionCode: AZ3 stateSubregionName: AZ_SOUTH - stateCode: WA stateName: Washington stateSubregions: - stateSubregionCode: WA stateSubregionName: WA - stateCode: ID stateName: Idaho stateSubregions: - stateSubregionCode: ID1 stateSubregionName: ID_BOISE_AND_NAMPA - stateSubregionCode: ID2 stateSubregionName: ID_NORTH_AND_EAST - stateCode: CO stateName: Colorado stateSubregions: - stateSubregionCode: CO2 stateSubregionName: CO_REST_ALL - stateSubregionCode: CO1 stateSubregionName: CO_CENTRAL - stateCode: CA stateName: California stateSubregions: - stateSubregionCode: CA13 stateSubregionName: CA_SAN_DIEGO_COUNTY - stateSubregionCode: CA12 stateSubregionName: CA_SAN_DIEGO - stateSubregionCode: CA11 stateSubregionName: CA_SAN_BERNARDINO - stateSubregionCode: CA10 stateSubregionName: "CA_RIVERSIDE_IMPERIAL\t" - stateSubregionCode: CA2 stateSubregionName: CA_CENTRAL_NORTH - stateSubregionCode: CA1 stateSubregionName: CA_CENTRAL - stateSubregionCode: CA4 stateSubregionName: CA_CENTRAL_WEST - stateSubregionCode: CA3 stateSubregionName: CA_CENTRAL_SOUTH - stateSubregionCode: CA6 stateSubregionName: CA_LOS_ANGELES - stateSubregionCode: CA5 stateSubregionName: CA_LONG_BEACH - stateSubregionCode: CA8 stateSubregionName: CA_NORTH - stateSubregionCode: CA7 stateSubregionName: CA_LOS_ANGELES_VENTURA_COUNTY - stateSubregionCode: CA9 stateSubregionName: CA_ONTARIO - stateSubregionCode: CA15 stateSubregionName: CA_SANTA_ANA - stateSubregionCode: CA14 stateSubregionName: CA_SAN_FRANCISCO - stateCode: UT stateName: Utah stateSubregions: - stateSubregionCode: UT1 stateSubregionName: UT_NORTH - stateSubregionCode: UT2 stateSubregionName: UT_SOUTH - stateCode: NM stateName: New Mexico stateSubregions: - stateSubregionCode: NM1 stateSubregionName: NM_CENTRAL - stateSubregionCode: NM2 stateSubregionName: NM_REST_ALL addressTypes: - STREET transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD - regions: - regionCode: C regionName: 48 State addressTypes: - PO_BOX transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD - regions: - regionCode: H regionName: AK and HI - regionCode: P regionName: US Protectorates addressTypes: - PO_BOX transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD sample4: value: name: Template 2 type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: H regionName: AK and HI - regionCode: P regionName: US Protectorates addressTypes: - PO_BOX - STREET transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD sample5: value: name: Template 2 type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: A regionName: APO/FPO addressTypes: - MILITARY transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD sample6: value: name: Template 2 type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - PO_BOX transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD - regions: - regionCode: H regionName: AK and HI - regionCode: P regionName: US Protectorates addressTypes: - PO_BOX - STREET transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD sample7: value: name: Template 2 type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: NE subRegionName: NE states: - stateCode: MA stateName: Massachusetts stateSubregions: - stateSubregionCode: MA2 stateSubregionName: MA_WEST - stateSubregionCode: MA1 stateSubregionName: MA_EAST - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST - stateCode: MO stateName: Missouri stateSubregions: - stateSubregionCode: MO3 stateSubregionName: MO_WEST - stateSubregionCode: MO2 stateSubregionName: MO_SOUTH - stateSubregionCode: MO1 stateSubregionName: MO_EAST - stateCode: IL stateName: Illinois stateSubregions: - stateSubregionCode: IL5 stateSubregionName: IL_SOUTHWEST - stateSubregionCode: IL4 stateSubregionName: IL_SOUTHEAST - stateSubregionCode: IL1 stateSubregionName: IL_CHICAGO - stateSubregionCode: IL3 stateSubregionName: IL_NORTH_WEST - stateSubregionCode: IL2 stateSubregionName: IL_NORTH_EAST - stateCode: ND stateName: North Dakota stateSubregions: - stateSubregionCode: ND stateSubregionName: ND - stateCode: KS stateName: Kansas stateSubregions: - stateSubregionCode: KS2 stateSubregionName: KS_WEST - stateSubregionCode: KS1 stateSubregionName: KS_EAST - subRegionCode: SO subRegionName: SO states: - stateCode: NC stateName: North Carolina stateSubregions: - stateSubregionCode: NC1 stateSubregionName: NC_EAST - stateSubregionCode: NC3 stateSubregionName: NC_SOUTH - stateSubregionCode: NC2 stateSubregionName: NC_NORTH - stateSubregionCode: NC4 stateSubregionName: NC_WEST - stateCode: MS stateName: Mississippi stateSubregions: - stateSubregionCode: MS2 stateSubregionName: MS_SOUTH - stateSubregionCode: MS1 stateSubregionName: MS_NORTH - stateCode: TN stateName: Tennessee stateSubregions: - stateSubregionCode: TN2 stateSubregionName: TN_EAST - stateSubregionCode: TN1 stateSubregionName: TN_CENTRAL - stateSubregionCode: TN3 stateSubregionName: TN_WEST - stateCode: VA stateName: Virginia stateSubregions: - stateSubregionCode: VA1 stateSubregionName: VA_CENTRAL - stateSubregionCode: VA3 stateSubregionName: VA_SOUTH_EAST - stateSubregionCode: VA2 stateSubregionName: VA_NORTH - stateSubregionCode: VA4 stateSubregionName: VA_SOUTH_WEST - subRegionCode: WE subRegionName: WE states: - stateCode: AZ stateName: Arizona stateSubregions: - stateSubregionCode: AZ1 stateSubregionName: AZ_NORTH - stateSubregionCode: AZ2 stateSubregionName: AZ_PHOENIX - stateSubregionCode: AZ3 stateSubregionName: AZ_SOUTH addressTypes: - STREET transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD sample8: value: name: Next Day type: CUSTOM rateModelType: TIERED_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 10.06 maxLimit: -1 shipCharge: amount: 2 currency: USD - minLimit: 0 maxLimit: 10.05 shipCharge: amount: 1 currency: USD sample9: value: name: Next Day type: DELIVERR rateModelType: TIERED_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 10.06 maxLimit: -1 shipCharge: amount: 2 currency: USD - minLimit: 0 maxLimit: 10.05 shipCharge: amount: 1 currency: USD sample10: value: name: Template 3 type: CUSTOM rateModelType: TIERED_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: NE subRegionName: NE states: - stateCode: CT stateName: Connecticut stateSubregions: - stateSubregionCode: CT2 stateSubregionName: CT_SOUTH_WEST - stateSubregionCode: CT1 stateSubregionName: CT_REST_ALL - stateCode: PA stateName: Pennsylvania stateSubregions: - stateSubregionCode: PA3 stateSubregionName: PA_NORTH_EAST - stateSubregionCode: PA2 stateSubregionName: PA_CENTRAL_NORTH - stateSubregionCode: PA5 stateSubregionName: PA_WEST - stateSubregionCode: PA4 stateSubregionName: PA_SOUTH - stateSubregionCode: PA1 stateSubregionName: PA_CENTRAL - stateCode: MA stateName: Massachusetts stateSubregions: - stateSubregionCode: MA2 stateSubregionName: MA_WEST - stateSubregionCode: MA1 stateSubregionName: MA_EAST - stateCode: RI stateName: Rhode Island stateSubregions: - stateSubregionCode: RI stateSubregionName: RI - stateCode: ME stateName: Maine stateSubregions: - stateSubregionCode: ME2 stateSubregionName: ME_WEST - stateSubregionCode: ME1 stateSubregionName: ME_EAST - stateCode: NH stateName: New Hampshire stateSubregions: - stateSubregionCode: NH stateSubregionName: NH - stateCode: NY stateName: New York stateSubregions: - stateSubregionCode: NY1 stateSubregionName: NY_BROOKLYN - stateSubregionCode: NY3 stateSubregionName: NY_NORTH_CENTRAL - stateSubregionCode: NY2 stateSubregionName: NY_CENTRAL - stateSubregionCode: NY5 stateSubregionName: NY_SOUTH - stateSubregionCode: NY4 stateSubregionName: NY_NORTH_WEST - stateCode: NJ stateName: New Jersey stateSubregions: - stateSubregionCode: NJ2 stateSubregionName: NJ_NORTH - stateSubregionCode: NJ1 stateSubregionName: NJ_CENTRAL - stateSubregionCode: NJ4 stateSubregionName: NJ_KEARNY - stateSubregionCode: NJ3 stateSubregionName: NJ_SOUTH - stateCode: VT stateName: Vermont stateSubregions: - stateSubregionCode: VT stateSubregionName: VT - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST - stateCode: MN stateName: Minnesota stateSubregions: - stateSubregionCode: MN2 stateSubregionName: MN_REST_ALL - stateSubregionCode: MN1 stateSubregionName: MN_CENTRAL_EAST - stateCode: MO stateName: Missouri stateSubregions: - stateSubregionCode: MO3 stateSubregionName: MO_WEST - stateSubregionCode: MO2 stateSubregionName: MO_SOUTH - stateSubregionCode: MO1 stateSubregionName: MO_EAST - stateCode: WI stateName: Wisconsin stateSubregions: - stateSubregionCode: WI2 stateSubregionName: WI_WEST - stateSubregionCode: WI1 stateSubregionName: WI_EAST - stateCode: IL stateName: Illinois stateSubregions: - stateSubregionCode: IL5 stateSubregionName: IL_SOUTHWEST - stateSubregionCode: IL4 stateSubregionName: IL_SOUTHEAST - stateSubregionCode: IL1 stateSubregionName: IL_CHICAGO - stateSubregionCode: IL3 stateSubregionName: IL_NORTH_WEST - stateSubregionCode: IL2 stateSubregionName: IL_NORTH_EAST - stateCode: IN stateName: Indiana stateSubregions: - stateSubregionCode: IN1 stateSubregionName: IN_CENTRAL_AND_EAST - stateSubregionCode: IN3 stateSubregionName: IN_SOUTH - stateSubregionCode: IN2 stateSubregionName: IN_NORTH - stateSubregionCode: IN4 stateSubregionName: IN_WEST - stateCode: ND stateName: North Dakota stateSubregions: - stateSubregionCode: ND stateSubregionName: ND - stateCode: NE stateName: Nebraska stateSubregions: - stateSubregionCode: NE stateSubregionName: NE - stateCode: KS stateName: Kansas stateSubregions: - stateSubregionCode: KS2 stateSubregionName: KS_WEST - stateSubregionCode: KS1 stateSubregionName: KS_EAST - stateCode: IA stateName: Iowa stateSubregions: - stateSubregionCode: IA2 stateSubregionName: IA_REST - stateSubregionCode: IA1 stateSubregionName: IA_CENTRAL - stateCode: OH stateName: Ohio stateSubregions: - stateSubregionCode: OH1 stateSubregionName: OH_CENTRAL - stateSubregionCode: OH3 stateSubregionName: OH_SOUTH_EAST - stateSubregionCode: OH2 stateSubregionName: OH_NORTH - stateSubregionCode: OH4 stateSubregionName: OH_WEST - stateCode: MI stateName: Michigan stateSubregions: - stateSubregionCode: MI2 stateSubregionName: MI_NORTH - stateSubregionCode: MI1 stateSubregionName: MI_CENTRAL - stateSubregionCode: MI3 stateSubregionName: MI_SOUTH_EAST - subRegionCode: SO subRegionName: SO states: - stateCode: DE stateName: Delaware stateSubregions: - stateSubregionCode: DE stateSubregionName: DE - stateCode: TX stateName: Texas stateSubregions: - stateSubregionCode: TX6 stateSubregionName: TX_NORTH_EAST - stateSubregionCode: TX5 stateSubregionName: TX_HOUSTON - stateSubregionCode: TX8 stateSubregionName: TX_SOUTH - stateSubregionCode: TX7 stateSubregionName: TX_NORTH_WEST - stateSubregionCode: TX9 stateSubregionName: TX_SOUTH_EAST - stateSubregionCode: TX10 stateSubregionName: TX_SOUTH_WEST - stateSubregionCode: TX2 stateSubregionName: TX_CENTRAL_NORTH - stateSubregionCode: TX1 stateSubregionName: TX_CENTRAL - stateSubregionCode: TX4 stateSubregionName: TX_DALLAS - stateSubregionCode: TX3 stateSubregionName: TX_CENTRAL_WEST - stateCode: FL stateName: Florida stateSubregions: - stateSubregionCode: FL2 stateSubregionName: FL_CENTRAL_WEST - stateSubregionCode: FL1 stateSubregionName: FL_CENTRAL_EAST - stateSubregionCode: FL4 stateSubregionName: FL_NORTH - stateSubregionCode: FL3 stateSubregionName: FL_MIAMI - stateSubregionCode: FL6 stateSubregionName: FL_SOUTH_WEST - stateSubregionCode: FL5 stateSubregionName: FL_SOUTH_EAST - stateCode: MS stateName: Mississippi stateSubregions: - stateSubregionCode: MS2 stateSubregionName: MS_SOUTH - stateSubregionCode: MS1 stateSubregionName: MS_NORTH - stateCode: AL stateName: Alabama stateSubregions: - stateSubregionCode: AL1 stateSubregionName: AL_NORTH - stateSubregionCode: AL2 stateSubregionName: AL_SOUTH - stateCode: VA stateName: Virginia stateSubregions: - stateSubregionCode: VA1 stateSubregionName: VA_CENTRAL - stateSubregionCode: VA3 stateSubregionName: VA_SOUTH_EAST - stateSubregionCode: VA2 stateSubregionName: VA_NORTH - stateSubregionCode: VA4 stateSubregionName: VA_SOUTH_WEST - stateCode: KY stateName: Kentucky stateSubregions: - stateSubregionCode: KY2 stateSubregionName: KY_WEST - stateSubregionCode: KY1 stateSubregionName: KY_EAST - stateCode: SC stateName: South Carolina stateSubregions: - stateSubregionCode: SC2 stateSubregionName: SC_NORTH - stateSubregionCode: SC1 stateSubregionName: SC_CENTRAL - stateSubregionCode: SC3 stateSubregionName: SC_SOUTH - stateCode: AR stateName: Arkansas stateSubregions: - stateSubregionCode: AR2 stateSubregionName: AR_WEST - stateSubregionCode: AR1 stateSubregionName: AR_EAST - stateCode: LA stateName: Louisiana stateSubregions: - stateSubregionCode: LA1 stateSubregionName: LA_NORTH - stateSubregionCode: LA2 stateSubregionName: LA_SOUTH - stateCode: NC stateName: North Carolina stateSubregions: - stateSubregionCode: NC1 stateSubregionName: NC_EAST - stateSubregionCode: NC3 stateSubregionName: NC_SOUTH - stateSubregionCode: NC2 stateSubregionName: NC_NORTH - stateSubregionCode: NC4 stateSubregionName: NC_WEST - stateCode: MD stateName: Maryland stateSubregions: - stateSubregionCode: MD1 stateSubregionName: MD_CENTRAL - stateSubregionCode: MD2 stateSubregionName: MD_REST_ALL - stateCode: GA stateName: Georgia stateSubregions: - stateSubregionCode: GA2 stateSubregionName: GA_CENTRAL - stateSubregionCode: GA1 stateSubregionName: GA_ATLANTA - stateSubregionCode: GA4 stateSubregionName: GA_NORTH_WEST - stateSubregionCode: GA3 stateSubregionName: GA_NORTH_EAST - stateSubregionCode: GA5 stateSubregionName: GA_SOUTH - stateCode: TN stateName: Tennessee stateSubregions: - stateSubregionCode: TN2 stateSubregionName: TN_EAST - stateSubregionCode: TN1 stateSubregionName: TN_CENTRAL - stateSubregionCode: TN3 stateSubregionName: TN_WEST - stateCode: OK stateName: Oklahoma stateSubregions: - stateSubregionCode: OK2 stateSubregionName: OK_REST_ALL - stateSubregionCode: OK1 stateSubregionName: OK_NORTH_EAST - stateCode: WV stateName: West Virginia stateSubregions: - stateSubregionCode: WV1 stateSubregionName: WV_EAST - stateSubregionCode: WV2 stateSubregionName: WV_WEST - stateCode: DC stateName: District of Columbia stateSubregions: - stateSubregionCode: DC stateSubregionName: DC - subRegionCode: WE subRegionName: WE states: - stateCode: WY stateName: Wyoming stateSubregions: - stateSubregionCode: WY stateSubregionName: WY - stateCode: OR stateName: Oregon stateSubregions: - stateSubregionCode: OR1 stateSubregionName: OR_CENTRAL - stateSubregionCode: OR2 stateSubregionName: OR_NORTH_WEST - stateCode: MT stateName: Montana stateSubregions: - stateSubregionCode: MT stateSubregionName: MT - stateCode: NV stateName: Nevada stateSubregions: - stateSubregionCode: NV2 stateSubregionName: NV_NORTH - stateSubregionCode: NV1 stateSubregionName: NV_LAS_VEGAS - stateSubregionCode: NV3 stateSubregionName: NV_SOUTH - stateCode: AZ stateName: Arizona stateSubregions: - stateSubregionCode: AZ1 stateSubregionName: AZ_NORTH - stateSubregionCode: AZ2 stateSubregionName: AZ_PHOENIX - stateSubregionCode: AZ3 stateSubregionName: AZ_SOUTH - stateCode: WA stateName: Washington stateSubregions: - stateSubregionCode: WA stateSubregionName: WA - stateCode: ID stateName: Idaho stateSubregions: - stateSubregionCode: ID1 stateSubregionName: ID_BOISE_AND_NAMPA - stateSubregionCode: ID2 stateSubregionName: ID_NORTH_AND_EAST - stateCode: CO stateName: Colorado stateSubregions: - stateSubregionCode: CO2 stateSubregionName: CO_REST_ALL - stateSubregionCode: CO1 stateSubregionName: CO_CENTRAL - stateCode: CA stateName: California stateSubregions: - stateSubregionCode: CA13 stateSubregionName: CA_SAN_DIEGO_COUNTY - stateSubregionCode: CA12 stateSubregionName: CA_SAN_DIEGO - stateSubregionCode: CA11 stateSubregionName: CA_SAN_BERNARDINO - stateSubregionCode: CA10 stateSubregionName: "CA_RIVERSIDE_IMPERIAL\t" - stateSubregionCode: CA2 stateSubregionName: CA_CENTRAL_NORTH - stateSubregionCode: CA1 stateSubregionName: CA_CENTRAL - stateSubregionCode: CA4 stateSubregionName: CA_CENTRAL_WEST - stateSubregionCode: CA3 stateSubregionName: CA_CENTRAL_SOUTH - stateSubregionCode: CA6 stateSubregionName: CA_LOS_ANGELES - stateSubregionCode: CA5 stateSubregionName: CA_LONG_BEACH - stateSubregionCode: CA8 stateSubregionName: CA_NORTH - stateSubregionCode: CA7 stateSubregionName: CA_LOS_ANGELES_VENTURA_COUNTY - stateSubregionCode: CA9 stateSubregionName: CA_ONTARIO - stateSubregionCode: CA15 stateSubregionName: CA_SANTA_ANA - stateSubregionCode: CA14 stateSubregionName: CA_SAN_FRANCISCO - stateCode: UT stateName: Utah stateSubregions: - stateSubregionCode: UT1 stateSubregionName: UT_NORTH - stateSubregionCode: UT2 stateSubregionName: UT_SOUTH - stateCode: NM stateName: New Mexico stateSubregions: - stateSubregionCode: NM1 stateSubregionName: NM_CENTRAL - stateSubregionCode: NM2 stateSubregionName: NM_REST_ALL addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - regions: - regionCode: C regionName: 48 State addressTypes: - PO_BOX transitTime: 3 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - regions: - regionCode: H regionName: AK and HI - regionCode: P regionName: US Protectorates addressTypes: - PO_BOX - STREET transitTime: 3 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - regions: - regionCode: A regionName: APO/FPO addressTypes: - MILITARY transitTime: 3 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD sample11: value: name: Paid Standard Template 2 type: CUSTOM rateModelType: TIERED_PRICING status: INACTIVE shippingMethods: - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: SO subRegionName: SO states: - stateCode: AR stateName: Arkansas stateSubregions: - stateSubregionCode: AR2 stateSubregionName: AR_WEST addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 19 currency: USD - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: NE subRegionName: NE states: - stateCode: CT stateName: Connecticut stateSubregions: - stateSubregionCode: CT2 stateSubregionName: CT_SOUTH_WEST - stateSubregionCode: CT1 stateSubregionName: CT_REST_ALL - stateCode: PA stateName: Pennsylvania stateSubregions: - stateSubregionCode: PA3 stateSubregionName: PA_NORTH_EAST - stateSubregionCode: PA2 stateSubregionName: PA_CENTRAL_NORTH - stateSubregionCode: PA5 stateSubregionName: PA_WEST - stateSubregionCode: PA4 stateSubregionName: PA_SOUTH - stateSubregionCode: PA1 stateSubregionName: PA_CENTRAL - stateCode: MA stateName: Massachusetts stateSubregions: - stateSubregionCode: MA2 stateSubregionName: MA_WEST - stateSubregionCode: MA1 stateSubregionName: MA_EAST - stateCode: RI stateName: Rhode Island stateSubregions: - stateSubregionCode: RI stateSubregionName: RI - stateCode: ME stateName: Maine stateSubregions: - stateSubregionCode: ME2 stateSubregionName: ME_WEST - stateSubregionCode: ME1 stateSubregionName: ME_EAST - stateCode: NH stateName: New Hampshire stateSubregions: - stateSubregionCode: NH stateSubregionName: NH - stateCode: NY stateName: New York stateSubregions: - stateSubregionCode: NY1 stateSubregionName: NY_BROOKLYN - stateSubregionCode: NY3 stateSubregionName: NY_NORTH_CENTRAL - stateSubregionCode: NY2 stateSubregionName: NY_CENTRAL - stateSubregionCode: NY5 stateSubregionName: NY_SOUTH - stateSubregionCode: NY4 stateSubregionName: NY_NORTH_WEST - stateCode: NJ stateName: New Jersey stateSubregions: - stateSubregionCode: NJ2 stateSubregionName: NJ_NORTH - stateSubregionCode: NJ1 stateSubregionName: NJ_CENTRAL - stateSubregionCode: NJ4 stateSubregionName: NJ_KEARNY - stateSubregionCode: NJ3 stateSubregionName: NJ_SOUTH - stateCode: VT stateName: Vermont stateSubregions: - stateSubregionCode: VT stateSubregionName: VT - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST - stateCode: MN stateName: Minnesota stateSubregions: - stateSubregionCode: MN2 stateSubregionName: MN_REST_ALL - stateSubregionCode: MN1 stateSubregionName: MN_CENTRAL_EAST - stateCode: MO stateName: Missouri stateSubregions: - stateSubregionCode: MO3 stateSubregionName: MO_WEST - stateSubregionCode: MO2 stateSubregionName: MO_SOUTH - stateSubregionCode: MO1 stateSubregionName: MO_EAST - stateCode: WI stateName: Wisconsin stateSubregions: - stateSubregionCode: WI2 stateSubregionName: WI_WEST - stateSubregionCode: WI1 stateSubregionName: WI_EAST - stateCode: IL stateName: Illinois stateSubregions: - stateSubregionCode: IL5 stateSubregionName: IL_SOUTHWEST - stateSubregionCode: IL4 stateSubregionName: IL_SOUTHEAST - stateSubregionCode: IL1 stateSubregionName: IL_CHICAGO - stateSubregionCode: IL3 stateSubregionName: IL_NORTH_WEST - stateSubregionCode: IL2 stateSubregionName: IL_NORTH_EAST - stateCode: IN stateName: Indiana stateSubregions: - stateSubregionCode: IN1 stateSubregionName: IN_CENTRAL_AND_EAST - stateSubregionCode: IN3 stateSubregionName: IN_SOUTH - stateSubregionCode: IN2 stateSubregionName: IN_NORTH - stateSubregionCode: IN4 stateSubregionName: IN_WEST - stateCode: ND stateName: North Dakota stateSubregions: - stateSubregionCode: ND stateSubregionName: ND - stateCode: NE stateName: Nebraska stateSubregions: - stateSubregionCode: NE stateSubregionName: NE - stateCode: KS stateName: Kansas stateSubregions: - stateSubregionCode: KS2 stateSubregionName: KS_WEST - stateSubregionCode: KS1 stateSubregionName: KS_EAST - stateCode: IA stateName: Iowa stateSubregions: - stateSubregionCode: IA2 stateSubregionName: IA_REST - stateSubregionCode: IA1 stateSubregionName: IA_CENTRAL - stateCode: OH stateName: Ohio stateSubregions: - stateSubregionCode: OH1 stateSubregionName: OH_CENTRAL - stateSubregionCode: OH3 stateSubregionName: OH_SOUTH_EAST - stateSubregionCode: OH2 stateSubregionName: OH_NORTH - stateSubregionCode: OH4 stateSubregionName: OH_WEST - stateCode: MI stateName: Michigan stateSubregions: - stateSubregionCode: MI2 stateSubregionName: MI_NORTH - stateSubregionCode: MI1 stateSubregionName: MI_CENTRAL - stateSubregionCode: MI3 stateSubregionName: MI_SOUTH_EAST - subRegionCode: SO subRegionName: SO states: - stateCode: DE stateName: Delaware stateSubregions: - stateSubregionCode: DE stateSubregionName: DE - stateCode: TX stateName: Texas stateSubregions: - stateSubregionCode: TX6 stateSubregionName: TX_NORTH_EAST - stateSubregionCode: TX5 stateSubregionName: TX_HOUSTON - stateSubregionCode: TX8 stateSubregionName: TX_SOUTH - stateSubregionCode: TX7 stateSubregionName: TX_NORTH_WEST - stateSubregionCode: TX9 stateSubregionName: TX_SOUTH_EAST - stateSubregionCode: TX10 stateSubregionName: TX_SOUTH_WEST - stateSubregionCode: TX2 stateSubregionName: TX_CENTRAL_NORTH - stateSubregionCode: TX1 stateSubregionName: TX_CENTRAL - stateSubregionCode: TX4 stateSubregionName: TX_DALLAS - stateSubregionCode: TX3 stateSubregionName: TX_CENTRAL_WEST - stateCode: FL stateName: Florida stateSubregions: - stateSubregionCode: FL2 stateSubregionName: FL_CENTRAL_WEST - stateSubregionCode: FL1 stateSubregionName: FL_CENTRAL_EAST - stateSubregionCode: FL4 stateSubregionName: FL_NORTH - stateSubregionCode: FL3 stateSubregionName: FL_MIAMI - stateSubregionCode: FL6 stateSubregionName: FL_SOUTH_WEST - stateSubregionCode: FL5 stateSubregionName: FL_SOUTH_EAST - stateCode: MS stateName: Mississippi stateSubregions: - stateSubregionCode: MS2 stateSubregionName: MS_SOUTH - stateSubregionCode: MS1 stateSubregionName: MS_NORTH - stateCode: AL stateName: Alabama stateSubregions: - stateSubregionCode: AL1 stateSubregionName: AL_NORTH - stateSubregionCode: AL2 stateSubregionName: AL_SOUTH - stateCode: VA stateName: Virginia stateSubregions: - stateSubregionCode: VA1 stateSubregionName: VA_CENTRAL - stateSubregionCode: VA3 stateSubregionName: VA_SOUTH_EAST - stateSubregionCode: VA2 stateSubregionName: VA_NORTH - stateSubregionCode: VA4 stateSubregionName: VA_SOUTH_WEST - stateCode: KY stateName: Kentucky stateSubregions: - stateSubregionCode: KY2 stateSubregionName: KY_WEST - stateSubregionCode: KY1 stateSubregionName: KY_EAST - stateCode: SC stateName: South Carolina stateSubregions: - stateSubregionCode: SC2 stateSubregionName: SC_NORTH - stateSubregionCode: SC1 stateSubregionName: SC_CENTRAL - stateSubregionCode: SC3 stateSubregionName: SC_SOUTH - stateCode: AR stateName: Arkansas stateSubregions: - stateSubregionCode: AR1 stateSubregionName: AR_EAST - stateCode: LA stateName: Louisiana stateSubregions: - stateSubregionCode: LA1 stateSubregionName: LA_NORTH - stateSubregionCode: LA2 stateSubregionName: LA_SOUTH - stateCode: NC stateName: North Carolina stateSubregions: - stateSubregionCode: NC1 stateSubregionName: NC_EAST - stateSubregionCode: NC3 stateSubregionName: NC_SOUTH - stateSubregionCode: NC2 stateSubregionName: NC_NORTH - stateSubregionCode: NC4 stateSubregionName: NC_WEST - stateCode: MD stateName: Maryland stateSubregions: - stateSubregionCode: MD1 stateSubregionName: MD_CENTRAL - stateSubregionCode: MD2 stateSubregionName: MD_REST_ALL - stateCode: GA stateName: Georgia stateSubregions: - stateSubregionCode: GA2 stateSubregionName: GA_CENTRAL - stateSubregionCode: GA1 stateSubregionName: GA_ATLANTA - stateSubregionCode: GA4 stateSubregionName: GA_NORTH_WEST - stateSubregionCode: GA3 stateSubregionName: GA_NORTH_EAST - stateSubregionCode: GA5 stateSubregionName: GA_SOUTH - stateCode: TN stateName: Tennessee stateSubregions: - stateSubregionCode: TN2 stateSubregionName: TN_EAST - stateSubregionCode: TN1 stateSubregionName: TN_CENTRAL - stateSubregionCode: TN3 stateSubregionName: TN_WEST - stateCode: OK stateName: Oklahoma stateSubregions: - stateSubregionCode: OK2 stateSubregionName: OK_REST_ALL - stateSubregionCode: OK1 stateSubregionName: OK_NORTH_EAST - stateCode: WV stateName: West Virginia stateSubregions: - stateSubregionCode: WV1 stateSubregionName: WV_EAST - stateSubregionCode: WV2 stateSubregionName: WV_WEST - stateCode: DC stateName: District of Columbia stateSubregions: - stateSubregionCode: DC stateSubregionName: DC - subRegionCode: WE subRegionName: WE states: - stateCode: WY stateName: Wyoming stateSubregions: - stateSubregionCode: WY stateSubregionName: WY - stateCode: OR stateName: Oregon stateSubregions: - stateSubregionCode: OR1 stateSubregionName: OR_CENTRAL - stateSubregionCode: OR2 stateSubregionName: OR_NORTH_WEST - stateCode: MT stateName: Montana stateSubregions: - stateSubregionCode: MT stateSubregionName: MT - stateCode: NV stateName: Nevada stateSubregions: - stateSubregionCode: NV2 stateSubregionName: NV_NORTH - stateSubregionCode: NV1 stateSubregionName: NV_LAS_VEGAS - stateSubregionCode: NV3 stateSubregionName: NV_SOUTH - stateCode: AZ stateName: Arizona stateSubregions: - stateSubregionCode: AZ1 stateSubregionName: AZ_NORTH - stateSubregionCode: AZ2 stateSubregionName: AZ_PHOENIX - stateSubregionCode: AZ3 stateSubregionName: AZ_SOUTH - stateCode: WA stateName: Washington stateSubregions: - stateSubregionCode: WA stateSubregionName: WA - stateCode: ID stateName: Idaho stateSubregions: - stateSubregionCode: ID1 stateSubregionName: ID_BOISE_AND_NAMPA - stateSubregionCode: ID2 stateSubregionName: ID_NORTH_AND_EAST - stateCode: CO stateName: Colorado stateSubregions: - stateSubregionCode: CO2 stateSubregionName: CO_REST_ALL - stateSubregionCode: CO1 stateSubregionName: CO_CENTRAL - stateCode: CA stateName: California stateSubregions: - stateSubregionCode: CA13 stateSubregionName: CA_SAN_DIEGO_COUNTY - stateSubregionCode: CA12 stateSubregionName: CA_SAN_DIEGO - stateSubregionCode: CA11 stateSubregionName: CA_SAN_BERNARDINO - stateSubregionCode: CA10 stateSubregionName: "CA_RIVERSIDE_IMPERIAL\t" - stateSubregionCode: CA2 stateSubregionName: CA_CENTRAL_NORTH - stateSubregionCode: CA1 stateSubregionName: CA_CENTRAL - stateSubregionCode: CA4 stateSubregionName: CA_CENTRAL_WEST - stateSubregionCode: CA3 stateSubregionName: CA_CENTRAL_SOUTH - stateSubregionCode: CA6 stateSubregionName: CA_LOS_ANGELES - stateSubregionCode: CA5 stateSubregionName: CA_LONG_BEACH - stateSubregionCode: CA8 stateSubregionName: CA_NORTH - stateSubregionCode: CA7 stateSubregionName: CA_LOS_ANGELES_VENTURA_COUNTY - stateSubregionCode: CA9 stateSubregionName: CA_ONTARIO - stateSubregionCode: CA15 stateSubregionName: CA_SANTA_ANA - stateSubregionCode: CA14 stateSubregionName: CA_SAN_FRANCISCO - stateCode: UT stateName: Utah stateSubregions: - stateSubregionCode: UT1 stateSubregionName: UT_NORTH - stateSubregionCode: UT2 stateSubregionName: UT_SOUTH - stateCode: NM stateName: New Mexico stateSubregions: - stateSubregionCode: NM1 stateSubregionName: NM_CENTRAL - stateSubregionCode: NM2 stateSubregionName: NM_REST_ALL addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 0 maxLimit: 0.01 shipCharge: amount: 2 currency: USD - minLimit: 0.02 maxLimit: -1 shipCharge: amount: 10 currency: USD sample12: value: name: Next Day servc test type: CUSTOM rateModelType: TIERED_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - regions: - regionCode: H regionName: AK and HI addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 10.06 maxLimit: -1 shipCharge: amount: 2 currency: USD - minLimit: 0 maxLimit: 10.05 shipCharge: amount: 1 currency: USD FREIGHT_TEMPLATE: value: name: Freight Template 1 type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: FREIGHT status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 7 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 1 currency: USD chargePerWeight: amount: 2 currency: USD OneDay: value: id: '2023101999000001748' name: Paid One Day S3 type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 7 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - regions: - regionCode: H regionName: AK and HI addressTypes: - STREET transitTime: 7 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: MW subRegionName: Midwest states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateCode: KS stateName: Kansas stateSubregions: - stateSubregionCode: KS2 stateSubregionName: KS_WEST - stateCode: MO stateName: Missouri stateSubregions: - stateSubregionCode: MO1 stateSubregionName: MO_EAST - stateCode: MI stateName: Michigan stateSubregions: - stateSubregionCode: MI1 stateSubregionName: MI_CENTRAL - stateCode: WI stateName: Wisconsin stateSubregions: - stateSubregionCode: WI1 stateSubregionName: WI_EAST - stateCode: IN stateName: Indiana stateSubregions: - stateSubregionCode: IN2 stateSubregionName: IN_NORTH - stateCode: IL stateName: Illinois stateSubregions: - stateSubregionCode: IL2 stateSubregionName: IL_NORTH_EAST - stateSubregionCode: IL1 stateSubregionName: IL_CHICAGO - stateSubregionCode: IL3 stateSubregionName: IL_NORTH_WEST - stateCode: ND stateName: North Dakota stateSubregions: - stateSubregionCode: ND stateSubregionName: ND - stateCode: NE stateName: Nebraska stateSubregions: - stateSubregionCode: NE stateSubregionName: NE - subRegionCode: SO subRegionName: South states: - stateCode: TX stateName: Texas stateSubregions: - stateSubregionCode: TX10 stateSubregionName: TX_SOUTH_WEST - stateSubregionCode: TX1 stateSubregionName: TX_CENTRAL - stateSubregionCode: TX3 stateSubregionName: TX_CENTRAL_WEST - stateSubregionCode: TX2 stateSubregionName: TX_CENTRAL_NORTH - stateSubregionCode: TX5 stateSubregionName: TX_HOUSTON - stateSubregionCode: TX4 stateSubregionName: TX_DALLAS - stateSubregionCode: TX7 stateSubregionName: TX_NORTH_WEST - stateSubregionCode: TX6 stateSubregionName: TX_NORTH_EAST - stateSubregionCode: TX9 stateSubregionName: TX_SOUTH_EAST - stateCode: OK stateName: Oklahoma stateSubregions: - stateSubregionCode: OK1 stateSubregionName: OK_NORTH_EAST - stateSubregionCode: OK2 stateSubregionName: OK_REST_ALL - stateCode: GA stateName: Georgia stateSubregions: - stateSubregionCode: GA1 stateSubregionName: GA_ATLANTA - stateSubregionCode: GA3 stateSubregionName: GA_NORTH_EAST - stateSubregionCode: GA2 stateSubregionName: GA_CENTRAL - stateCode: NC stateName: North Carolina stateSubregions: - stateSubregionCode: NC3 stateSubregionName: NC_SOUTH - stateCode: SC stateName: South Carolina stateSubregions: - stateSubregionCode: SC1 stateSubregionName: SC_CENTRAL - stateSubregionCode: SC2 stateSubregionName: SC_NORTH - stateCode: AR stateName: Arkansas stateSubregions: - stateSubregionCode: AR2 stateSubregionName: AR_WEST - stateCode: AL stateName: Alabama stateSubregions: - stateSubregionCode: AL2 stateSubregionName: AL_SOUTH - stateCode: FL stateName: Florida stateSubregions: - stateSubregionCode: FL1 stateSubregionName: FL_CENTRAL_EAST - stateSubregionCode: FL3 stateSubregionName: FL_MIAMI - stateSubregionCode: FL2 stateSubregionName: FL_CENTRAL_WEST - stateSubregionCode: FL5 stateSubregionName: FL_SOUTH_EAST - stateSubregionCode: FL4 stateSubregionName: FL_NORTH - stateSubregionCode: FL6 stateSubregionName: FL_SOUTH_WEST - stateCode: TN stateName: Tennessee stateSubregions: - stateSubregionCode: TN3 stateSubregionName: TN_WEST - subRegionCode: NE subRegionName: Northeast states: - stateCode: NY stateName: New York stateSubregions: - stateSubregionCode: NY1 stateSubregionName: NY_BROOKLYN - stateSubregionCode: NY3 stateSubregionName: NY_NORTH_CENTRAL - stateSubregionCode: NY5 stateSubregionName: NY_SOUTH - subRegionCode: WE subRegionName: West states: - stateCode: NM stateName: New Mexico stateSubregions: - stateSubregionCode: NM2 stateSubregionName: NM_REST_ALL - stateSubregionCode: NM1 stateSubregionName: NM_CENTRAL - stateCode: AZ stateName: Arizona stateSubregions: - stateSubregionCode: AZ1 stateSubregionName: AZ_NORTH - stateSubregionCode: AZ2 stateSubregionName: AZ_PHOENIX - stateSubregionCode: AZ3 stateSubregionName: AZ_SOUTH - stateCode: MT stateName: Montana stateSubregions: - stateSubregionCode: MT stateSubregionName: MT addressTypes: - STREET transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: WE subRegionName: West states: - stateCode: UT stateName: Utah stateSubregions: - stateSubregionCode: UT2 stateSubregionName: UT_SOUTH - stateCode: WY stateName: Wyoming stateSubregions: - stateSubregionCode: WY stateSubregionName: WY - stateCode: CO stateName: Colorado stateSubregions: - stateSubregionCode: CO1 stateSubregionName: CO_CENTRAL - stateSubregionCode: CO2 stateSubregionName: CO_REST_ALL - stateCode: CA stateName: California stateSubregions: - stateSubregionCode: CA2 stateSubregionName: CA_CENTRAL_NORTH - stateSubregionCode: CA5 stateSubregionName: CA_LONG_BEACH - stateSubregionCode: CA8 stateSubregionName: CA_NORTH - stateCode: NV stateName: Nevada stateSubregions: - stateSubregionCode: NV1 stateSubregionName: NV_LAS_VEGAS - stateSubregionCode: NV3 stateSubregionName: NV_SOUTH - subRegionCode: SO subRegionName: South states: - stateCode: TX stateName: Texas stateSubregions: - stateSubregionCode: TX8 stateSubregionName: TX_SOUTH addressTypes: - STREET transitTime: 4 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - regions: - regionCode: H regionName: AK and HI addressTypes: - STREET transitTime: 5 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: WE subRegionName: West states: - stateCode: CA stateName: California stateSubregions: - stateSubregionCode: CA12 stateSubregionName: CA_SAN_DIEGO - stateSubregionCode: CA11 stateSubregionName: CA_SAN_BERNARDINO - stateSubregionCode: CA10 stateSubregionName: "CA_RIVERSIDE_IMPERIAL\t" - stateSubregionCode: CA1 stateSubregionName: CA_CENTRAL - stateSubregionCode: CA3 stateSubregionName: CA_CENTRAL_SOUTH - stateSubregionCode: CA4 stateSubregionName: CA_CENTRAL_WEST - stateSubregionCode: CA7 stateSubregionName: CA_LOS_ANGELES_VENTURA_COUNTY - stateSubregionCode: CA6 stateSubregionName: CA_LOS_ANGELES - stateSubregionCode: CA9 stateSubregionName: CA_ONTARIO - stateSubregionCode: CA15 stateSubregionName: CA_SANTA_ANA - stateSubregionCode: CA14 stateSubregionName: CA_SAN_FRANCISCO - stateSubregionCode: CA13 stateSubregionName: CA_SAN_DIEGO_COUNTY - stateCode: NV stateName: Nevada stateSubregions: - stateSubregionCode: NV2 stateSubregionName: NV_NORTH - stateCode: OR stateName: Oregon stateSubregions: - stateSubregionCode: OR1 stateSubregionName: OR_CENTRAL - stateCode: UT stateName: Utah stateSubregions: - stateSubregionCode: UT1 stateSubregionName: UT_NORTH - stateCode: ID stateName: Idaho stateSubregions: - stateSubregionCode: ID2 stateSubregionName: ID_NORTH_AND_EAST - stateSubregionCode: ID1 stateSubregionName: ID_BOISE_AND_NAMPA addressTypes: - STREET transitTime: 5 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: TWO_DAY status: INACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: MW subRegionName: Midwest states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD1 stateSubregionName: SD_EAST - stateCode: MI stateName: Michigan stateSubregions: - stateSubregionCode: MI3 stateSubregionName: MI_SOUTH_EAST - stateSubregionCode: MI2 stateSubregionName: MI_NORTH - stateCode: IA stateName: Iowa stateSubregions: - stateSubregionCode: IA1 stateSubregionName: IA_CENTRAL - stateSubregionCode: IA2 stateSubregionName: IA_REST - stateCode: WI stateName: Wisconsin stateSubregions: - stateSubregionCode: WI2 stateSubregionName: WI_WEST - stateCode: IN stateName: Indiana stateSubregions: - stateSubregionCode: IN1 stateSubregionName: IN_CENTRAL_AND_EAST - stateSubregionCode: IN4 stateSubregionName: IN_WEST - stateSubregionCode: IN3 stateSubregionName: IN_SOUTH - stateCode: MN stateName: Minnesota stateSubregions: - stateSubregionCode: MN2 stateSubregionName: MN_REST_ALL - stateSubregionCode: MN1 stateSubregionName: MN_CENTRAL_EAST - stateCode: KS stateName: Kansas stateSubregions: - stateSubregionCode: KS1 stateSubregionName: KS_EAST - stateCode: MO stateName: Missouri stateSubregions: - stateSubregionCode: MO3 stateSubregionName: MO_WEST - stateSubregionCode: MO2 stateSubregionName: MO_SOUTH - stateCode: IL stateName: Illinois stateSubregions: - stateSubregionCode: IL4 stateSubregionName: IL_SOUTHEAST - stateSubregionCode: IL5 stateSubregionName: IL_SOUTHWEST - stateCode: OH stateName: Ohio stateSubregions: - stateSubregionCode: OH2 stateSubregionName: OH_NORTH - stateSubregionCode: OH1 stateSubregionName: OH_CENTRAL - stateSubregionCode: OH4 stateSubregionName: OH_WEST - stateSubregionCode: OH3 stateSubregionName: OH_SOUTH_EAST - subRegionCode: SO subRegionName: South states: - stateCode: DE stateName: Delaware stateSubregions: - stateSubregionCode: DE stateSubregionName: DE - stateCode: KY stateName: Kentucky stateSubregions: - stateSubregionCode: KY1 stateSubregionName: KY_EAST - stateSubregionCode: KY2 stateSubregionName: KY_WEST - stateCode: GA stateName: Georgia stateSubregions: - stateSubregionCode: GA5 stateSubregionName: GA_SOUTH - stateSubregionCode: GA4 stateSubregionName: GA_NORTH_WEST - stateCode: NC stateName: North Carolina stateSubregions: - stateSubregionCode: NC2 stateSubregionName: NC_NORTH - stateSubregionCode: NC1 stateSubregionName: NC_EAST - stateSubregionCode: NC4 stateSubregionName: NC_WEST - stateCode: AR stateName: Arkansas stateSubregions: - stateSubregionCode: AR1 stateSubregionName: AR_EAST - stateCode: WV stateName: West Virginia stateSubregions: - stateSubregionCode: WV2 stateSubregionName: WV_WEST - stateSubregionCode: WV1 stateSubregionName: WV_EAST - stateCode: MS stateName: Mississippi stateSubregions: - stateSubregionCode: MS1 stateSubregionName: MS_NORTH - stateSubregionCode: MS2 stateSubregionName: MS_SOUTH - stateCode: LA stateName: Louisiana stateSubregions: - stateSubregionCode: LA2 stateSubregionName: LA_SOUTH - stateSubregionCode: LA1 stateSubregionName: LA_NORTH - stateCode: SC stateName: South Carolina stateSubregions: - stateSubregionCode: SC3 stateSubregionName: SC_SOUTH - stateCode: AL stateName: Alabama stateSubregions: - stateSubregionCode: AL1 stateSubregionName: AL_NORTH - stateCode: VA stateName: Virginia stateSubregions: - stateSubregionCode: VA2 stateSubregionName: VA_NORTH - stateSubregionCode: VA1 stateSubregionName: VA_CENTRAL - stateSubregionCode: VA4 stateSubregionName: VA_SOUTH_WEST - stateSubregionCode: VA3 stateSubregionName: VA_SOUTH_EAST - stateCode: TN stateName: Tennessee stateSubregions: - stateSubregionCode: TN1 stateSubregionName: TN_CENTRAL - stateSubregionCode: TN2 stateSubregionName: TN_EAST - stateCode: MD stateName: Maryland stateSubregions: - stateSubregionCode: MD2 stateSubregionName: MD_REST_ALL - stateSubregionCode: MD1 stateSubregionName: MD_CENTRAL - stateCode: DC stateName: District of Columbia stateSubregions: - stateSubregionCode: DC stateSubregionName: DC - subRegionCode: NE subRegionName: Northeast states: - stateCode: NY stateName: New York stateSubregions: - stateSubregionCode: NY2 stateSubregionName: NY_CENTRAL - stateSubregionCode: NY4 stateSubregionName: NY_NORTH_WEST - stateCode: PA stateName: Pennsylvania stateSubregions: - stateSubregionCode: PA2 stateSubregionName: PA_CENTRAL_NORTH - stateSubregionCode: PA1 stateSubregionName: PA_CENTRAL - stateSubregionCode: PA4 stateSubregionName: PA_SOUTH - stateSubregionCode: PA3 stateSubregionName: PA_NORTH_EAST - stateSubregionCode: PA5 stateSubregionName: PA_WEST addressTypes: - STREET transitTime: 2 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: ONE_DAY status: INACTIVE configurations: - regions: - regionName: 48 State regionCode: C subRegions: - subRegionCode: SO states: - stateCode: DE stateSubregions: - stateSubregionCode: DE - stateCode: TX stateSubregions: - stateSubregionCode: TX1 - stateSubregionCode: TX5 - stateSubregionCode: TX7 - stateSubregionCode: TX3 - stateSubregionCode: TX8 - stateSubregionCode: TX4 - stateSubregionCode: TX2 - stateSubregionCode: TX9 - stateSubregionCode: TX6 - stateSubregionCode: TX10 - stateCode: MS stateSubregions: - stateSubregionCode: MS1 - stateSubregionCode: MS2 - stateCode: FL stateSubregions: - stateSubregionCode: FL2 - stateSubregionCode: FL1 - stateSubregionCode: FL4 - stateSubregionCode: FL6 - stateSubregionCode: FL5 - stateSubregionCode: FL3 - stateCode: AL stateSubregions: - stateSubregionCode: AL1 - stateSubregionCode: AL2 - stateCode: VA stateSubregions: - stateSubregionCode: VA3 - stateSubregionCode: VA2 - stateSubregionCode: VA1 - stateSubregionCode: VA4 - stateCode: KY stateSubregions: - stateSubregionCode: KY2 - stateSubregionCode: KY1 - stateCode: SC stateSubregions: - stateSubregionCode: SC2 - stateSubregionCode: SC3 - stateSubregionCode: SC1 - stateCode: AR stateSubregions: - stateSubregionCode: AR1 - stateSubregionCode: AR2 - stateCode: LA stateSubregions: - stateSubregionCode: LA1 - stateSubregionCode: LA2 - stateCode: NC stateSubregions: - stateSubregionCode: NC2 - stateSubregionCode: NC3 - stateSubregionCode: NC4 - stateSubregionCode: NC1 - stateCode: MD stateSubregions: - stateSubregionCode: MD1 - stateSubregionCode: MD2 - stateCode: GA stateSubregions: - stateSubregionCode: GA4 - stateSubregionCode: GA5 - stateSubregionCode: GA1 - stateSubregionCode: GA2 - stateSubregionCode: GA3 - stateCode: TN stateSubregions: - stateSubregionCode: TN2 - stateSubregionCode: TN1 - stateSubregionCode: TN3 - stateCode: OK stateSubregions: - stateSubregionCode: OK1 - stateSubregionCode: OK2 - stateCode: WV stateSubregions: - stateSubregionCode: WV2 - stateSubregionCode: WV1 - stateCode: DC stateSubregions: - stateSubregionCode: DC addressTypes: - STREET transitTime: 1 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 101 currency: USD chargePerItem: amount: 101 currency: USD required: true responses: '200': description: Successful Operation content: application/json: schema: required: - name - rateModelType - shippingMethods - status - type type: object properties: id: type: string description: Shipping Template ID name: pattern: "^[A-Za-z0-9\\s]+$" type: string description: Shipping Template Name type: type: string description: Shipping Template Type, should be CUSTOM or 3PL Specific enum: - DEFAULT - CUSTOM - DELIVERR rateModelType: type: string description: 'This is the shipping model type. TIERED_PRICING: This model means that you charge shipping based on the price of the item PER_SHIPMENT_PRICING: This model means that you charge shipping based on the weight of your items (per pound), or you charge shipping based on the number of items purchased in an order' enum: - TIERED_PRICING - PER_SHIPMENT_PRICING status: type: string description: Shipping Template Status, Can be ACTIVE or INACTIVE status enum: - ACTIVE - INACTIVE shippingMethods: type: array description: Array of different ship methods of a Shipping Template items: required: - configurations - shipMethod - status type: object properties: shipMethod: type: string description: |- | Attribute | Description | Data Type | | ---- | ----------------- | ------- | | VALUE | All Marketplace Sellers must offer Value shipping to Walmart.com customers for items that can't ship within expected transit times for standard shipping. | string | | STANDARD | You are required to offer standard shipping to Walmart.com customers. | string | | TWO_DAY | If approved for this option, you'll provide free 2-day shipping to customers and your items will be enabled with the TwoDay delivery tag. | string | | ONE_DAY | If approved for this option, you can provide free and paid 1-day shipping to customers and your items will be enabled with OneDay delivery. | string | | FREIGHT | Heavy items which takes 6,7,8,9,10 days. | string | enum: - VALUE - STANDARD - THREE_DAY - TWO_DAY - ONE_DAY - FREIGHT status: type: string description: Shipping Method Status, Can be ACTIVE or INACTIVE status enum: - ACTIVE - INACTIVE configurations: type: array description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge items: required: - addressTypes - regions - transitTime type: object properties: regions: type: array description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc items: required: - regionCode type: object properties: regionCode: type: string regionName: type: string subRegions: type: array items: required: - subRegionCode type: object properties: subRegionCode: type: string subRegionName: type: string states: type: array items: required: - stateCode type: object properties: stateCode: type: string stateName: type: string stateSubregions: type: array items: required: - stateSubregionCode type: object properties: stateSubregionCode: type: string stateSubregionName: type: string description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc addressTypes: type: array description: Supported address types like PO_BOX STREET MILITARY items: type: string description: Supported address types like PO_BOX STREET MILITARY enum: - PO_BOX - MILITARY - STREET transitTime: type: integer description: Time in transit format: int32 perShippingCharge: required: - unitOfMeasure type: object properties: unitOfMeasure: type: string description: Unit of Measure eg. LB shippingAndHandling: required: - amount - currency type: object properties: amount: type: number description: 'The numerical amount for that charge. Example: 9.99' currency: type: string description: 'The type of currency for the charge. Example: USD for US Dollars' description: Shipping and Handling Charge chargePerWeight: required: - amount - currency type: object properties: amount: type: number description: Charge Per weight, value USD currency: type: string description: Currency, eg. USD description: Per Item Charge chargePerItem: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Per Weight Charge description: Charge per shipping tieredShippingCharges: type: array description: Tiered Shipping Charges items: required: - maxLimit - minLimit type: object properties: minLimit: type: number description: Minimum Limit maxLimit: type: number description: Maximum Limit shipCharge: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Details of Shipping Charge description: Tiered Shipping Charges description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge description: Array of different ship methods of a Shipping Template createdBy: type: string modifiedBy: type: string createdDate: type: number modifiedDate: type: number example: id: '91235658274476033' name: Next Day servc test type: CUSTOM rateModelType: TIERED_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - regions: - regionCode: H regionName: AK and HI addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 10.06 maxLimit: -1 shipCharge: amount: 2 currency: USD - minLimit: 0 maxLimit: 10.05 shipCharge: amount: 1 currency: USD delete: tags: - Settings summary: Walmart Delete Shipping Template description: Delete Existing Shipping Template. DEFAULT templates cannot be deleted. 3PL partners cannot delete templates created by Sellers. externalDocs: description: View Guide url: "/doc/us/mp/us-mp-settings/#4797" operationId: deleteShippingTemplateDetails parameters: - name: templateId in: path description: Shipping Template ID of the template to be deleted required: true schema: type: string - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name responses: '200': description: Successful Operation content: application/json: schema: type: object properties: id: type: string description: Shipping Template ID example: id: '91233632243720193' "/v3/settings/shipping/shipnodes": get: tags: - Settings summary: Walmart Get All Fulfillment Centers description: This API provides a list of all the fulfillment centers operationId: getAllFulfillmentCenters parameters: - name: includeCalendarDayConfiguration in: query description: Flag to specify if calendarDayConfiguration block will be included in the response. Allowed values are true or false. required: false schema: type: boolean default: false - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name responses: '200': description: Successful Operation content: application/json: schema: type: array items: type: object properties: shipNode: type: string description: The fulfillment center or ship node Id which uniquely identifies each facility and is autogenerated during the creation of fulfillment center. Every time a facility is added, a new ship node id is generated. nodeType: type: string description: 'Defines if the fulfillment center is virtual, seller owned or third party owned. Allowed values: PHYSICAL, VIRTUAL, 3PL.' shipNodeName: type: string description: Name of the fulfillment center. status: type: string description: 'Status of fulfillment center. Allowed values: ACTIVE, INACTIVE..' timeZone: type: string description: Time zone that the seller ships from.Allowed timezones are PST, EST, CST, MST. distributorSupportedServices: type: array description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY, ONE_DAY_DELIVERY.' items: type: string description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY, ONE_DAY_DELIVERY.' customNodeId: type: string description: Custom node identifier provided by seller. Allowed values are alphanumeric | String postalAddress: type: object properties: addressLine1: type: string description: Street address of the fulfillment center. city: type: string description: City of the fulfillment center. state: type: string description: State of the fulfillment center. country: type: string description: Country of the fulfillment center. postalCode: type: string description: Postal code of the fulfillment center. description: Postal code of the fulfillment center. shippingDetails: type: array description: Shipping Details. items: type: object properties: twoDayShipping: type: array description: Shipping type provided. items: type: object properties: carrierMethodName: type: string description: Name of the shipping carrier. Carrier names can be retrieved from the Get carrier methods API. carrierMethodType: type: string description: Shipping method. description: Shipping type provided. description: Shipping Details. calendarDayConfiguration: type: object properties: standardProcessingSchedule: type: object properties: sunday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm monday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm tuesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm wednesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm thursday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm friday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm saturday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm description: Operating Schedule for the fulfillment center additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd carrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier description: Calendar day promise details. For examples, please refer to 'Sample 2 - Calendar Day Configurations' in request & response samples. examples: Sample 1: value: - shipNode: '99351656957153281' nodeType: 3PL shipNodeName: MP_Deliverr status: INACTIVE timeZone: EST distributorSupportedServices: - TWO_DAY_DELIVERY postalAddress: addressLine1: 110 Sutter St. Fl 9 city: San Francisco state: CA country: USA postalCode: '94104' shippingDetails: - twoDayShipping: - carrierMethodName: 3PL_CARRIER carrierMethodType: GROUND - shipNode: '84955660770217985' nodeType: PHYSICAL shipNodeName: Seller test-distributor status: INACTIVE timeZone: PST distributorSupportedServices: - TWO_DAY_DELIVERY customNodeId: 91ab1234 postalAddress: addressLine1: 111 CALIFORNIA SA city: SC GABRIEL state: CA country: USA postalCode: '90706' shippingDetails: - twoDayShipping: - carrierMethodName: FEDEX carrierMethodType: GROUND Sample 2 - Calendar Day Configurations: value: - shipNode: '99351656957153281' nodeType: 3PL shipNodeName: MP_Deliverr status: INACTIVE timeZone: EST distributorSupportedServices: - TWO_DAY_DELIVERY postalAddress: addressLine1: 110 Sutter St. Fl 9 city: San Francisco state: CA country: USA postalCode: '94104' shippingDetails: - twoDayShipping: - carrierMethodName: 3PL_CARRIER carrierMethodType: GROUND calendarDayConfiguration: standardProcessingSchedule: sunday: isWorkingDay: false monday: isWorkingDay: true cutOffTime: '08:30' tuesday: isWorkingDay: true cutOffTime: '14:00' wednesday: isWorkingDay: true cutOffTime: '11:00' thursday: isWorkingDay: true cutOffTime: '08:30' friday: isWorkingDay: true cutOffTime: '08:30' saturday: isWorkingDay: false additionalDaysOff: [] - shipNode: '84955660770217985' nodeType: PHYSICAL shipNodeName: Seller test-distributor status: INACTIVE timeZone: PST distributorSupportedServices: - TWO_DAY_DELIVERY customNodeId: 91ab1234 postalAddress: addressLine1: 111 CALIFORNIA SA city: SC GABRIEL state: CA country: USA postalCode: '90706' shippingDetails: - twoDayShipping: - carrierMethodName: FEDEX carrierMethodType: GROUND calendarDayConfiguration: standardProcessingSchedule: sunday: isWorkingDay: false monday: isWorkingDay: true cutOffTime: '11:30' tuesday: isWorkingDay: true cutOffTime: '11:30' wednesday: isWorkingDay: true cutOffTime: '11:00' thursday: isWorkingDay: true cutOffTime: '11:30' friday: isWorkingDay: true cutOffTime: '11:30' saturday: isWorkingDay: false additionalDaysOff: - '2030-12-24' - '2030-12-25' put: tags: - Settings summary: Walmart Update Fulfillment Center description: This API enables or disables a fulfillment center. operationId: updateFulfillmentCenter parameters: - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name requestBody: description: Request fields content: application/json: schema: type: object properties: shipNodeHeader: type: object properties: version: type: string shipNode: type: object properties: shipNode: type: string description: The fulfillment center or ship node Id which uniquely identifies each facility and is autogenerated during the creation of fulfillment center. Every time a facility is added, a new ship node id is generated. shipNodeName: type: string description: Name of the fulfillment center. status: type: string description: 'Status of fulfillment center. Allowed values: ACTIVE, INACTIVE..' timeZone: type: string description: Time zone that the seller ships from.Allowed timezones are PST, EST, CST, MST. distributorSupportedServices: type: array description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' items: type: string description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' customNodeId: type: string description: Custom node identifier provided by seller. Allowed values are alphanumeric | String postalAddress: type: object properties: addressLine1: type: string description: Street address of the fulfillment center. city: type: string description: City of the fulfillment center. state: type: string description: State of the fulfillment center. country: type: string description: Country of the fulfillment center. postalCode: type: string description: Postal code of the fulfillment center. description: Postal code of the fulfillment center. shippingDetails: type: array description: Shipping Details. items: type: object properties: twoDayShipping: type: array description: Shipping type provided. items: type: object properties: carrierMethodName: type: string description: Name of the shipping carrier. Carrier names can be retrieved from the Get carrier methods API. carrierMethodType: type: string description: Shipping method. description: Shipping type provided. description: Shipping Details. calendarDayConfiguration: required: - additionalDaysOff - standardProcessingSchedule type: object properties: standardProcessingSchedule: required: - friday - monday - saturday - sunday - thursday - tuesday - wednesday type: object properties: sunday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' monday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' tuesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' wednesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' thursday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' friday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' saturday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' description: Operating Schedule for the fulfillment center additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd carrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier description: Calendar day promise details. For examples, please refer to 'Sample 2 - Calendar Day Configurations' in request & response samples. examples: Sample 1: value: shipNodeHeader: version: '1.2' shipNode: shipNode: '84955660770217985' shipNodeName: Seller test-distributor status: ACTIVE timeZone: PST distributorSupportedServices: - TWO_DAY_DELIVERY customNodeId: 91ab1234 postalAddress: addressLine1: 111 CALIFORNIA SA city: SC GABRIEL state: CA country: USA postalCode: '90706' shippingDetails: - twoDayShipping: - carrierMethodName: FEDEX carrierMethodType: GROUND Sample 2 - Calendar Day Configurations: value: shipNodeHeader: version: '1.2' shipNode: shipNode: '84955660770217985' shipNodeName: Seller test-distributor status: ACTIVE timeZone: PST distributorSupportedServices: - TWO_DAY_DELIVERY customNodeId: 91ab1234 postalAddress: addressLine1: 111 CALIFORNIA SA city: SC GABRIEL state: CA country: USA postalCode: '90706' shippingDetails: - twoDayShipping: - carrierMethodName: FEDEX carrierMethodType: GROUND calendarDayConfiguration: standardProcessingSchedule: sunday: isWorkingDay: false monday: isWorkingDay: true cutOffTime: '11:30' tuesday: isWorkingDay: true cutOffTime: '11:30' wednesday: isWorkingDay: false thursday: isWorkingDay: true cutOffTime: '11:30' friday: isWorkingDay: true cutOffTime: '11:30' saturday: isWorkingDay: true cutOffTime: '15:45' additionalDaysOff: - '2030-12-24' - '2030-12-25' Sample 3 - Carrier Calendar Day Configurations: value: shipNodeHeader: version: '1.2' shipNode: shipNode: '84955660770217985' shipNodeName: Seller test-distributor status: ACTIVE timeZone: PST distributorSupportedServices: - TWO_DAY_DELIVERY customNodeId: 91ab1234 postalAddress: addressLine1: 111 CALIFORNIA SA city: SC GABRIEL state: CA country: USA postalCode: '90706' shippingDetails: - twoDayShipping: - carrierMethodName: FEDEX carrierMethodType: GROUND calendarDayConfiguration: standardProcessingSchedule: sunday: isWorkingDay: false monday: isWorkingDay: true cutOffTime: '11:30' tuesday: isWorkingDay: true cutOffTime: '11:30' wednesday: isWorkingDay: false thursday: isWorkingDay: true cutOffTime: '11:30' friday: isWorkingDay: true cutOffTime: '11:30' saturday: isWorkingDay: true cutOffTime: '15:45' additionalDaysOff: - '2030-12-24' - '2030-12-25' carrierWeekendCalendar: saturday: workingDay: true sunday: workingDay: true required: true responses: '200': description: Successful Operation content: application/json: schema: type: object properties: shipNode: type: string description: The fulfillment center or ship node Id which uniquely identifies each facility and is autogenerated during the creation of fulfillment center. Every time a facility is added, a new ship node id is generated. nodeType: type: string description: 'Defines if the fulfillment center is virtual, seller owned or third party owned. Allowed values: PHYSICAL, VIRTUAL, 3PL.' shipNodeName: type: string description: Name of the fulfillment center. status: type: string description: 'Status of fulfillment center. Allowed values: ACTIVE, INACTIVE..' timeZone: type: string description: Time zone that the seller ships from.Allowed timezones are PST, EST, CST, MST. distributorSupportedServices: type: array description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY, ONE_DAY_DELIVERY.' items: type: string description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY, ONE_DAY_DELIVERY.' customNodeId: type: string description: Custom node identifier provided by seller. Allowed values are alphanumeric | String postalAddress: type: object properties: addressLine1: type: string description: Street address of the fulfillment center. city: type: string description: City of the fulfillment center. state: type: string description: State of the fulfillment center. country: type: string description: Country of the fulfillment center. postalCode: type: string description: Postal code of the fulfillment center. description: Postal code of the fulfillment center. shippingDetails: type: array description: Shipping Details. items: type: object properties: twoDayShipping: type: array description: Shipping type provided. items: type: object properties: carrierMethodName: type: string description: Name of the shipping carrier. Carrier names can be retrieved from the Get carrier methods API. carrierMethodType: type: string description: Shipping method. description: Shipping type provided. description: Shipping Details. calendarDayConfiguration: type: object properties: standardProcessingSchedule: type: object properties: sunday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm monday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm tuesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm wednesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm thursday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm friday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm saturday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm description: Operating Schedule for the fulfillment center additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd carrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier description: Calendar day promise details. For examples, please refer to 'Sample 2 - Calendar Day Configurations' in request & response samples. examples: Sample 1: value: shipNode: '84955660770217985' nodeType: PHYSICAL shipNodeName: Seller test-distributor status: ACTIVE timeZone: PST distributorSupportedServices: - TWO_DAY_DELIVERY customNodeId: 91ab1234 postalAddress: addressLine1: 111 CALIFORNIA SA city: SC GABRIEL state: CA country: USA postalCode: '90706' shippingDetails: - twoDayShipping: - carrierMethodName: FEDEX carrierMethodType: GROUND Sample 2 - Calendar Day Configurations: value: shipNode: '84955660770217985' nodeType: PHYSICAL shipNodeName: Seller test-distributor status: ACTIVE timeZone: PST distributorSupportedServices: - TWO_DAY_DELIVERY customNodeId: 91ab1234 postalAddress: addressLine1: 111 CALIFORNIA SA city: SC GABRIEL state: CA country: USA postalCode: '90706' shippingDetails: - twoDayShipping: - carrierMethodName: FEDEX carrierMethodType: GROUND calendarDayConfiguration: standardProcessingSchedule: sunday: isWorkingDay: false monday: isWorkingDay: true cutOffTime: '11:30' tuesday: isWorkingDay: true cutOffTime: '11:30' wednesday: isWorkingDay: false thursday: isWorkingDay: true cutOffTime: '11:30' friday: isWorkingDay: true cutOffTime: '11:30' saturday: isWorkingDay: true cutOffTime: '15:45' additionalDaysOff: - '2021-12-24' - '2021-12-25' post: tags: - Settings summary: Walmart Create Fulfillment Center description: This API creates a fulfillment center. operationId: createFulfillmentCenter parameters: - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name requestBody: description: Request fields content: application/json: schema: type: object properties: shipNodeHeader: type: object properties: version: type: string shipNode: type: array items: type: object properties: shipNodeName: type: string description: Name of the fulfillment center. status: type: string description: 'Status of fulfillment center. Allowed values: ACTIVE, INACTIVE..' timeZone: type: string description: Time zone that the seller ships from.Allowed timezones are PST, EST, CST, MST. distributorSupportedServices: type: array description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' items: type: string description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' customNodeId: type: string description: Custom node identifier provided by seller. Allowed values are alphanumeric | String postalAddress: type: object properties: addressLine1: type: string description: Street address of the fulfillment center. city: type: string description: City of the fulfillment center. state: type: string description: State of the fulfillment center. country: type: string description: Country of the fulfillment center. postalCode: type: string description: Postal code of the fulfillment center. description: Postal code of the fulfillment center. shippingDetails: type: array description: Shipping Details. items: type: object properties: twoDayShipping: type: array description: Shipping type provided. items: type: object properties: carrierMethodName: type: string description: Name of the shipping carrier. Carrier names can be retrieved from the Get carrier methods API. carrierMethodType: type: string description: Shipping method. description: Shipping type provided. description: Shipping Details. calendarDayConfiguration: required: - additionalDaysOff - standardProcessingSchedule type: object properties: standardProcessingSchedule: required: - friday - monday - saturday - sunday - thursday - tuesday - wednesday type: object properties: sunday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' monday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' tuesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' wednesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' thursday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' friday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' saturday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' description: Operating Schedule for the fulfillment center additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd description: Calendar day promise details. For examples, please refer to 'Sample 2 - Calendar Day Configurations' in request & response samples. examples: Sample 1: value: shipNodeHeader: version: '1.2' shipNode: - shipNodeName: my distrubutor786 status: ACTIVE timeZone: PST distributorSupportedServices: - TWO_DAY_DELIVERY customNodeId: 92hb1234 postalAddress: addressLine1: 36 CALIFORNIA SAA233 city: SC GABRIEL22 state: CA country: USA postalCode: '90100' shippingDetails: - twoDayShipping: - carrierMethodName: FEDEX carrierMethodType: GROUND Sample 2 - Calendar Day Configurations: value: shipNodeHeader: version: '1.2' shipNode: - shipNodeName: my distrubutor786 status: ACTIVE timeZone: PST distributorSupportedServices: - TWO_DAY_DELIVERY customNodeId: 92hb1234 postalAddress: addressLine1: 36 CALIFORNIA SAA233 city: SC GABRIEL22 state: CA country: USA postalCode: '90100' shippingDetails: - twoDayShipping: - carrierMethodName: FEDEX carrierMethodType: GROUND calendarDayConfiguration: standardProcessingSchedule: sunday: isWorkingDay: false monday: isWorkingDay: true cutOffTime: '11:30' tuesday: isWorkingDay: true cutOffTime: '11:30' wednesday: isWorkingDay: false thursday: isWorkingDay: true cutOffTime: '11:30' friday: isWorkingDay: true cutOffTime: '11:30' saturday: isWorkingDay: true cutOffTime: '15:45' additionalDaysOff: - '2021-12-24' - '2021-12-25' required: true responses: '200': description: Successful Operation content: application/json: schema: type: array items: type: object properties: shipNode: type: string description: The fulfillment center or ship node Id which uniquely identifies each facility and is autogenerated during the creation of fulfillment center. Every time a facility is added, a new ship node id is generated. nodeType: type: string description: 'Defines if the fulfillment center is virtual, seller owned or third party owned. Allowed values: PHYSICAL, VIRTUAL, 3PL.' shipNodeName: type: string description: Name of the fulfillment center. status: type: string description: 'Status of fulfillment center. Allowed values: ACTIVE, INACTIVE..' timeZone: type: string description: Time zone that the seller ships from.Allowed timezones are PST, EST, CST, MST. distributorSupportedServices: type: array description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' items: type: string description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' customNodeId: type: string description: Custom node identifier provided by seller. Allowed values are alphanumeric | String postalAddress: type: object properties: addressLine1: type: string description: Street address of the fulfillment center. city: type: string description: City of the fulfillment center. state: type: string description: State of the fulfillment center. country: type: string description: Country of the fulfillment center. postalCode: type: string description: Postal code of the fulfillment center. description: Postal code of the fulfillment center. shippingDetails: type: array description: Shipping Details. items: type: object properties: twoDayShipping: type: array description: Shipping type provided. items: type: object properties: carrierMethodName: type: string description: Name of the shipping carrier. Carrier names can be retrieved from the Get carrier methods API. carrierMethodType: type: string description: Shipping method. description: Shipping type provided. description: Shipping Details. calendarDayConfiguration: type: object properties: standardProcessingSchedule: type: object properties: sunday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm monday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm tuesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm wednesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm thursday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm friday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm saturday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm description: Operating Schedule for the fulfillment center additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd description: Calendar day promise details. For examples, please refer to 'Sample 2 - Calendar Day Configurations' in request & response samples. examples: Sample 1: value: - shipNode: '91539778610008065' nodeType: PHYSICAL shipNodeName: my distrubutor786 status: ACTIVE timeZone: PST distributorSupportedServices: - TWO_DAY_DELIVERY customNodeId: 92hb1234 postalAddress: addressLine1: 36 CALIFORNIA SAA233 city: SC GABRIEL22 state: CA country: USA postalCode: '90100' shippingDetails: - twoDayShipping: - carrierMethodName: FEDEX carrierMethodType: GROUND Sample 2 - Calendar Day Configurations: value: - shipNode: '91539778610008065' nodeType: PHYSICAL shipNodeName: my distrubutor786 status: ACTIVE timeZone: PST distributorSupportedServices: - TWO_DAY_DELIVERY customNodeId: 92hb1234 postalAddress: addressLine1: 36 CALIFORNIA SAA233 city: SC GABRIEL22 state: CA country: USA postalCode: '90100' shippingDetails: - twoDayShipping: - carrierMethodName: FEDEX carrierMethodType: GROUND calendarDayConfiguration: standardProcessingSchedule: sunday: isWorkingDay: false monday: isWorkingDay: true cutOffTime: '11:30' tuesday: isWorkingDay: true cutOffTime: '11:30' wednesday: isWorkingDay: false thursday: isWorkingDay: true cutOffTime: '11:30' friday: isWorkingDay: true cutOffTime: '11:30' saturday: isWorkingDay: true cutOffTime: '15:45' additionalDaysOff: - '2030-12-24' - '2030-12-25' "/v3/settings/shipping/account": get: tags: - Settings summary: Walmart Get Account Level Settings description: This API gets all Account Level Settings operationId: getAccountLevelSettings parameters: - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name responses: '200': description: Successful Operation content: application/json: schema: type: array items: required: - additionalDaysOff type: object properties: carrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd examples: Sample: value: calendarDayConfiguration: carrierWeekendCalendar: saturday: workingDay: true sunday: workingDay: false additionalDaysOff: - '2030-03-10' - '2030-04-10' put: tags: - Settings summary: Walmart Update Account Level Settings description: This API updates Account Level Settings operationId: updateAccountLevelSettings parameters: - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name requestBody: description: Request fields content: application/json: schema: required: - calendarDayOffOverrides type: object properties: carrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier calendarDayOffOverrides: required: - actionType - overrideDate type: object properties: overrideDate: type: string description: 'Calendar Date to be overridden ' actionType: type: string description: Action type for the override date. Can be ADD or REMOVE description: Calendar Day Overrides to update override dates. Format for Date is ISO 8601. format: yyyy-MM-dd example: calendarDayConfiguration: carrierWeekendCalendar: saturday: workingDay: true sunday: workingDay: false calendarDayOffOverrides: - overrideDate: '2030-03-10' actionType: ADD - overrideDate: '2024-04-10' actionType: REMOVE required: true responses: '200': description: Successful Operation content: application/json: schema: required: - additionalDaysOff type: object properties: carrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd examples: Sample: value: calendarDayConfiguration: carrierWeekendCalendar: saturday: workingDay: true sunday: workingDay: false additionalDaysOff: - '2030-03-10' post: tags: - Settings summary: Walmart Create Account Level Settings description: This API creates Account Level Settings operationId: createAccountLevelSettings parameters: - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name requestBody: description: Request fields content: application/json: schema: required: - calendarDayOffOverrides type: object properties: carrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier calendarDayOffOverrides: required: - actionType - overrideDate type: object properties: overrideDate: type: string description: 'Calendar Date to be overridden ' actionType: type: string description: Action type for the override date. Can be ADD or REMOVE description: Calendar Day Overrides to update override dates. Format for Date is ISO 8601. format: yyyy-MM-dd example: calendarDayConfiguration: carrierWeekendCalendar: saturday: workingDay: true sunday: workingDay: false calendarDayOffOverrides: - overrideDate: '2030-03-10' actionType: ADD - overrideDate: '2030-04-10' actionType: ADD required: true responses: '200': description: Successful Operation content: application/json: schema: type: array items: required: - additionalDaysOff type: object properties: carrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd examples: Sample: value: calendarDayConfiguration: carrierWeekendCalendar: saturday: workingDay: true sunday: workingDay: false additionalDaysOff: - '2030-03-10' - '2030-04-10' "/v3/settings/shipping/templates": get: tags: - Settings summary: Walmart Get All Shipping Templates description: Get all the shipping templates for a Seller. All template types viz. CUSTOM, DEFAULT and 3PL-specific (eg. DELIVERR) can be retrieved through this API. operationId: getAllShippingTemplates parameters: - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name responses: '200': description: Successful Operation content: application/json: schema: type: object properties: shippingTemplates: type: array description: Array of Shipping Templates items: type: object properties: id: type: string description: Shipping Template ID name: type: string description: Shipping Template Name type: type: string description: Shipping Template Type enum: - DEFAULT - CUSTOM - DELIVERR status: type: string description: Shipping Template/ Configurations active or inactive status enum: - ACTIVE - INACTIVE rateModelType: type: string enum: - TIERED_PRICING - PER_SHIPMENT_PRICING createdBy: type: string modifiedBy: type: string createdDate: type: number description: Template Creation Date modifiedDate: type: number description: Template Modified Date description: Array of Shipping Templates totalRecords: type: number description: Total Number of records in the response of the API example: shippingTemplates: - id: '83822721754763265' name: Default Template Create type: DEFAULT status: ACTIVE rateModelType: TIERED_PRICING createdDate: 1597821725911 modifiedDate: 1597821725911 - id: '83163437035458561' name: Next Day servc2 type: CUSTOM status: ACTIVE rateModelType: TIERED_PRICING createdDate: 1597664533668 modifiedDate: 1597828307198 - id: '83165439354245121' name: Next Day servc3 type: CUSTOM status: ACTIVE rateModelType: TIERED_PRICING createdDate: 1597665011078 modifiedDate: 1597665011078 - id: '83166772199198721' name: Next Day servc5 type: CUSTOM status: ACTIVE rateModelType: TIERED_PRICING createdDate: 1597665328865 modifiedDate: 1597665328865 - id: '83087074537021441' name: Next Day type: CUSTOM status: ACTIVE rateModelType: TIERED_PRICING createdDate: 1597646304723 modifiedDate: 1597646304723 - id: '83087948495757313' name: Next Day 22 type: CUSTOM status: ACTIVE rateModelType: TIERED_PRICING createdDate: 1597646513086 modifiedDate: 1599474456834 - id: '83166113029201921' name: Next Day servc4 type: CUSTOM status: ACTIVE rateModelType: TIERED_PRICING createdDate: 1597665149044 modifiedDate: 1597665149044 - id: '83167397568356353' name: next day Servc1 type: CUSTOM status: ACTIVE rateModelType: TIERED_PRICING createdDate: 1597665455301 modifiedDate: 1597665455301 - id: '83168810683899905' name: Next Day servc7 type: CUSTOM status: ACTIVE rateModelType: TIERED_PRICING createdDate: 1597665792216 modifiedDate: 1597665792216 - id: '83188562269609985' name: Next Day servc8 type: CUSTOM status: ACTIVE rateModelType: TIERED_PRICING createdDate: 1597670501380 modifiedDate: 1597670501380 - id: '83822084810383361' name: Next Day test2 type: CUSTOM status: ACTIVE rateModelType: TIERED_PRICING createdDate: 1597821545570 modifiedDate: 1597821545570 - id: '91235658274476033' name: Next Day servc test type: CUSTOM status: ACTIVE rateModelType: TIERED_PRICING createdDate: 1599589180814 modifiedDate: 1599589209694 totalRecords: 12 post: tags: - Settings summary: Walmart Create Shipping Templates description: Create a new shipping template externalDocs: description: View Guide url: "/doc/us/mp/us-mp-settings/#2479" operationId: createShippingTemplates parameters: - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name requestBody: description: Request fields content: application/json: schema: type: object properties: name: type: string description: Shipping Template Name type: type: string description: Shipping Template Type, should be CUSTOM or 3PL Specific rateModelType: type: string description: 'This is the shipping model type. TIERED_PRICING: This model means that you charge shipping based on the price of the item PER_SHIPMENT_PRICING: This model means that you charge shipping based on the weight of your items (per pound), or you charge shipping based on the number of items purchased in an order' status: type: string description: Shipping Template Status, Can be ACTIVE or INACTIVE status shippingMethods: type: array description: Array of different ship methods of a Shipping Template items: required: - configurations - shipMethod - status type: object properties: shipMethod: type: string description: |- | Attribute | Description | Data Type | | ---- | ----------------- | ------- | | VALUE | All Marketplace Sellers must offer Value shipping to Walmart.com customers for items that can't ship within expected transit times for standard shipping. | string | | STANDARD | You are required to offer standard shipping to Walmart.com customers. | string | | TWO_DAY | If approved for this option, you'll provide free 2-day shipping to customers and your items will be enabled with the TwoDay delivery tag. | string | | ONE_DAY | If approved for this option, you can provide free and paid 1-day shipping to customers and your items will be enabled with OneDay delivery. | string | | FREIGHT | Heavy items which takes 6,7,8,9,10 days. | string | enum: - VALUE - STANDARD - THREE_DAY - TWO_DAY - ONE_DAY - FREIGHT status: type: string description: Shipping Method Status, Can be ACTIVE or INACTIVE status enum: - ACTIVE - INACTIVE configurations: type: array description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge items: required: - addressTypes - regions - transitTime type: object properties: regions: type: array description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc items: required: - regionCode type: object properties: regionCode: type: string regionName: type: string subRegions: type: array items: required: - subRegionCode type: object properties: subRegionCode: type: string subRegionName: type: string states: type: array items: required: - stateCode type: object properties: stateCode: type: string stateName: type: string stateSubregions: type: array items: required: - stateSubregionCode type: object properties: stateSubregionCode: type: string stateSubregionName: type: string description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc addressTypes: type: array description: Supported address types like PO_BOX STREET MILITARY items: type: string description: Supported address types like PO_BOX STREET MILITARY enum: - PO_BOX - MILITARY - STREET transitTime: type: integer description: Time in transit format: int32 perShippingCharge: required: - unitOfMeasure type: object properties: unitOfMeasure: type: string description: Unit of Measure eg. LB shippingAndHandling: required: - amount - currency type: object properties: amount: type: number description: 'The numerical amount for that charge. Example: 9.99' currency: type: string description: 'The type of currency for the charge. Example: USD for US Dollars' description: Shipping and Handling Charge chargePerWeight: required: - amount - currency type: object properties: amount: type: number description: Charge Per weight, value USD currency: type: string description: Currency, eg. USD description: Per Item Charge chargePerItem: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Per Weight Charge description: Charge per shipping tieredShippingCharges: type: array description: Tiered Shipping Charges items: required: - maxLimit - minLimit type: object properties: minLimit: type: number description: Minimum Limit maxLimit: type: number description: Maximum Limit shipCharge: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Details of Shipping Charge description: Tiered Shipping Charges description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge description: Array of different ship methods of a Shipping Template examples: sample1: value: name: Next Day servc type: CUSTOM rateModelType: TIERED_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 10.06 maxLimit: -1 shipCharge: amount: 2 currency: USD - minLimit: 0 maxLimit: 10.05 shipCharge: amount: 1 currency: USD sample2: value: name: Template 2 type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: NE subRegionName: NE states: - stateCode: CT stateName: Connecticut stateSubregions: - stateSubregionCode: CT2 stateSubregionName: CT_SOUTH_WEST - stateSubregionCode: CT1 stateSubregionName: CT_REST_ALL - stateCode: PA stateName: Pennsylvania stateSubregions: - stateSubregionCode: PA3 stateSubregionName: PA_NORTH_EAST - stateSubregionCode: PA2 stateSubregionName: PA_CENTRAL_NORTH - stateSubregionCode: PA5 stateSubregionName: PA_WEST - stateSubregionCode: PA4 stateSubregionName: PA_SOUTH - stateSubregionCode: PA1 stateSubregionName: PA_CENTRAL - stateCode: MA stateName: Massachusetts stateSubregions: - stateSubregionCode: MA2 stateSubregionName: MA_WEST - stateSubregionCode: MA1 stateSubregionName: MA_EAST - stateCode: RI stateName: Rhode Island stateSubregions: - stateSubregionCode: RI stateSubregionName: RI - stateCode: ME stateName: Maine stateSubregions: - stateSubregionCode: ME2 stateSubregionName: ME_WEST - stateSubregionCode: ME1 stateSubregionName: ME_EAST - stateCode: NH stateName: New Hampshire stateSubregions: - stateSubregionCode: NH stateSubregionName: NH - stateCode: NY stateName: New York stateSubregions: - stateSubregionCode: NY1 stateSubregionName: NY_BROOKLYN - stateSubregionCode: NY3 stateSubregionName: NY_NORTH_CENTRAL - stateSubregionCode: NY2 stateSubregionName: NY_CENTRAL - stateSubregionCode: NY5 stateSubregionName: NY_SOUTH - stateSubregionCode: NY4 stateSubregionName: NY_NORTH_WEST - stateCode: NJ stateName: New Jersey stateSubregions: - stateSubregionCode: NJ2 stateSubregionName: NJ_NORTH - stateSubregionCode: NJ1 stateSubregionName: NJ_CENTRAL - stateSubregionCode: NJ4 stateSubregionName: NJ_KEARNY - stateSubregionCode: NJ3 stateSubregionName: NJ_SOUTH - stateCode: VT stateName: Vermont stateSubregions: - stateSubregionCode: VT stateSubregionName: VT - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST - stateCode: MN stateName: Minnesota stateSubregions: - stateSubregionCode: MN2 stateSubregionName: MN_REST_ALL - stateSubregionCode: MN1 stateSubregionName: MN_CENTRAL_EAST - stateCode: MO stateName: Missouri stateSubregions: - stateSubregionCode: MO3 stateSubregionName: MO_WEST - stateSubregionCode: MO2 stateSubregionName: MO_SOUTH - stateSubregionCode: MO1 stateSubregionName: MO_EAST - stateCode: WI stateName: Wisconsin stateSubregions: - stateSubregionCode: WI2 stateSubregionName: WI_WEST - stateSubregionCode: WI1 stateSubregionName: WI_EAST - stateCode: IL stateName: Illinois stateSubregions: - stateSubregionCode: IL5 stateSubregionName: IL_SOUTHWEST - stateSubregionCode: IL4 stateSubregionName: IL_SOUTHEAST - stateSubregionCode: IL1 stateSubregionName: IL_CHICAGO - stateSubregionCode: IL3 stateSubregionName: IL_NORTH_WEST - stateSubregionCode: IL2 stateSubregionName: IL_NORTH_EAST - stateCode: IN stateName: Indiana stateSubregions: - stateSubregionCode: IN1 stateSubregionName: IN_CENTRAL_AND_EAST - stateSubregionCode: IN3 stateSubregionName: IN_SOUTH - stateSubregionCode: IN2 stateSubregionName: IN_NORTH - stateSubregionCode: IN4 stateSubregionName: IN_WEST - stateCode: ND stateName: North Dakota stateSubregions: - stateSubregionCode: ND stateSubregionName: ND - stateCode: NE stateName: Nebraska stateSubregions: - stateSubregionCode: NE stateSubregionName: NE - stateCode: KS stateName: Kansas stateSubregions: - stateSubregionCode: KS2 stateSubregionName: KS_WEST - stateSubregionCode: KS1 stateSubregionName: KS_EAST - stateCode: IA stateName: Iowa stateSubregions: - stateSubregionCode: IA2 stateSubregionName: IA_REST - stateSubregionCode: IA1 stateSubregionName: IA_CENTRAL - stateCode: OH stateName: Ohio stateSubregions: - stateSubregionCode: OH1 stateSubregionName: OH_CENTRAL - stateSubregionCode: OH3 stateSubregionName: OH_SOUTH_EAST - stateSubregionCode: OH2 stateSubregionName: OH_NORTH - stateSubregionCode: OH4 stateSubregionName: OH_WEST - stateCode: MI stateName: Michigan stateSubregions: - stateSubregionCode: MI2 stateSubregionName: MI_NORTH - stateSubregionCode: MI1 stateSubregionName: MI_CENTRAL - stateSubregionCode: MI3 stateSubregionName: MI_SOUTH_EAST - subRegionCode: SO subRegionName: SO states: - stateCode: DE stateName: Delaware stateSubregions: - stateSubregionCode: DE stateSubregionName: DE - stateCode: TX stateName: Texas stateSubregions: - stateSubregionCode: TX6 stateSubregionName: TX_NORTH_EAST - stateSubregionCode: TX5 stateSubregionName: TX_HOUSTON - stateSubregionCode: TX8 stateSubregionName: TX_SOUTH - stateSubregionCode: TX7 stateSubregionName: TX_NORTH_WEST - stateSubregionCode: TX9 stateSubregionName: TX_SOUTH_EAST - stateSubregionCode: TX10 stateSubregionName: TX_SOUTH_WEST - stateSubregionCode: TX2 stateSubregionName: TX_CENTRAL_NORTH - stateSubregionCode: TX1 stateSubregionName: TX_CENTRAL - stateSubregionCode: TX4 stateSubregionName: TX_DALLAS - stateSubregionCode: TX3 stateSubregionName: TX_CENTRAL_WEST - stateCode: FL stateName: Florida stateSubregions: - stateSubregionCode: FL2 stateSubregionName: FL_CENTRAL_WEST - stateSubregionCode: FL1 stateSubregionName: FL_CENTRAL_EAST - stateSubregionCode: FL4 stateSubregionName: FL_NORTH - stateSubregionCode: FL3 stateSubregionName: FL_MIAMI - stateSubregionCode: FL6 stateSubregionName: FL_SOUTH_WEST - stateSubregionCode: FL5 stateSubregionName: FL_SOUTH_EAST - stateCode: MS stateName: Mississippi stateSubregions: - stateSubregionCode: MS2 stateSubregionName: MS_SOUTH - stateSubregionCode: MS1 stateSubregionName: MS_NORTH - stateCode: AL stateName: Alabama stateSubregions: - stateSubregionCode: AL1 stateSubregionName: AL_NORTH - stateSubregionCode: AL2 stateSubregionName: AL_SOUTH - stateCode: VA stateName: Virginia stateSubregions: - stateSubregionCode: VA1 stateSubregionName: VA_CENTRAL - stateSubregionCode: VA3 stateSubregionName: VA_SOUTH_EAST - stateSubregionCode: VA2 stateSubregionName: VA_NORTH - stateSubregionCode: VA4 stateSubregionName: VA_SOUTH_WEST - stateCode: KY stateName: Kentucky stateSubregions: - stateSubregionCode: KY2 stateSubregionName: KY_WEST - stateSubregionCode: KY1 stateSubregionName: KY_EAST - stateCode: SC stateName: South Carolina stateSubregions: - stateSubregionCode: SC2 stateSubregionName: SC_NORTH - stateSubregionCode: SC1 stateSubregionName: SC_CENTRAL - stateSubregionCode: SC3 stateSubregionName: SC_SOUTH - stateCode: AR stateName: Arkansas stateSubregions: - stateSubregionCode: AR2 stateSubregionName: AR_WEST - stateSubregionCode: AR1 stateSubregionName: AR_EAST - stateCode: LA stateName: Louisiana stateSubregions: - stateSubregionCode: LA1 stateSubregionName: LA_NORTH - stateSubregionCode: LA2 stateSubregionName: LA_SOUTH - stateCode: NC stateName: North Carolina stateSubregions: - stateSubregionCode: NC1 stateSubregionName: NC_EAST - stateSubregionCode: NC3 stateSubregionName: NC_SOUTH - stateSubregionCode: NC2 stateSubregionName: NC_NORTH - stateSubregionCode: NC4 stateSubregionName: NC_WEST - stateCode: MD stateName: Maryland stateSubregions: - stateSubregionCode: MD1 stateSubregionName: MD_CENTRAL - stateSubregionCode: MD2 stateSubregionName: MD_REST_ALL - stateCode: GA stateName: Georgia stateSubregions: - stateSubregionCode: GA2 stateSubregionName: GA_CENTRAL - stateSubregionCode: GA1 stateSubregionName: GA_ATLANTA - stateSubregionCode: GA4 stateSubregionName: GA_NORTH_WEST - stateSubregionCode: GA3 stateSubregionName: GA_NORTH_EAST - stateSubregionCode: GA5 stateSubregionName: GA_SOUTH - stateCode: TN stateName: Tennessee stateSubregions: - stateSubregionCode: TN2 stateSubregionName: TN_EAST - stateSubregionCode: TN1 stateSubregionName: TN_CENTRAL - stateSubregionCode: TN3 stateSubregionName: TN_WEST - stateCode: OK stateName: Oklahoma stateSubregions: - stateSubregionCode: OK2 stateSubregionName: OK_REST_ALL - stateSubregionCode: OK1 stateSubregionName: OK_NORTH_EAST - stateCode: WV stateName: West Virginia stateSubregions: - stateSubregionCode: WV1 stateSubregionName: WV_EAST - stateSubregionCode: WV2 stateSubregionName: WV_WEST - stateCode: DC stateName: District of Columbia stateSubregions: - stateSubregionCode: DC stateSubregionName: DC - subRegionCode: WE subRegionName: WE states: - stateCode: WY stateName: Wyoming stateSubregions: - stateSubregionCode: WY stateSubregionName: WY - stateCode: OR stateName: Oregon stateSubregions: - stateSubregionCode: OR1 stateSubregionName: OR_CENTRAL - stateSubregionCode: OR2 stateSubregionName: OR_NORTH_WEST - stateCode: MT stateName: Montana stateSubregions: - stateSubregionCode: MT stateSubregionName: MT - stateCode: NV stateName: Nevada stateSubregions: - stateSubregionCode: NV2 stateSubregionName: NV_NORTH - stateSubregionCode: NV1 stateSubregionName: NV_LAS_VEGAS - stateSubregionCode: NV3 stateSubregionName: NV_SOUTH - stateCode: AZ stateName: Arizona stateSubregions: - stateSubregionCode: AZ1 stateSubregionName: AZ_NORTH - stateSubregionCode: AZ2 stateSubregionName: AZ_PHOENIX - stateSubregionCode: AZ3 stateSubregionName: AZ_SOUTH - stateCode: WA stateName: Washington stateSubregions: - stateSubregionCode: WA stateSubregionName: WA - stateCode: ID stateName: Idaho stateSubregions: - stateSubregionCode: ID1 stateSubregionName: ID_BOISE_AND_NAMPA - stateSubregionCode: ID2 stateSubregionName: ID_NORTH_AND_EAST - stateCode: CO stateName: Colorado stateSubregions: - stateSubregionCode: CO2 stateSubregionName: CO_REST_ALL - stateSubregionCode: CO1 stateSubregionName: CO_CENTRAL - stateCode: CA stateName: California stateSubregions: - stateSubregionCode: CA13 stateSubregionName: CA_SAN_DIEGO_COUNTY - stateSubregionCode: CA12 stateSubregionName: CA_SAN_DIEGO - stateSubregionCode: CA11 stateSubregionName: CA_SAN_BERNARDINO - stateSubregionCode: CA10 stateSubregionName: "CA_RIVERSIDE_IMPERIAL\t" - stateSubregionCode: CA2 stateSubregionName: CA_CENTRAL_NORTH - stateSubregionCode: CA1 stateSubregionName: CA_CENTRAL - stateSubregionCode: CA4 stateSubregionName: CA_CENTRAL_WEST - stateSubregionCode: CA3 stateSubregionName: CA_CENTRAL_SOUTH - stateSubregionCode: CA6 stateSubregionName: CA_LOS_ANGELES - stateSubregionCode: CA5 stateSubregionName: CA_LONG_BEACH - stateSubregionCode: CA8 stateSubregionName: CA_NORTH - stateSubregionCode: CA7 stateSubregionName: CA_LOS_ANGELES_VENTURA_COUNTY - stateSubregionCode: CA9 stateSubregionName: CA_ONTARIO - stateSubregionCode: CA15 stateSubregionName: CA_SANTA_ANA - stateSubregionCode: CA14 stateSubregionName: CA_SAN_FRANCISCO - stateCode: UT stateName: Utah stateSubregions: - stateSubregionCode: UT1 stateSubregionName: UT_NORTH - stateSubregionCode: UT2 stateSubregionName: UT_SOUTH - stateCode: NM stateName: New Mexico stateSubregions: - stateSubregionCode: NM1 stateSubregionName: NM_CENTRAL - stateSubregionCode: NM2 stateSubregionName: NM_REST_ALL addressTypes: - STREET transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD - regions: - regionCode: C regionName: 48 State addressTypes: - PO_BOX transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD - regions: - regionCode: H regionName: AK and HI - regionCode: P regionName: US Protectorates addressTypes: - PO_BOX - STREET transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD - regions: - regionCode: A regionName: APO/FPO addressTypes: - MILITARY transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD sample3: value: name: Test Template For Doc type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: NE subRegionName: NE states: - stateCode: CT stateName: Connecticut stateSubregions: - stateSubregionCode: CT2 stateSubregionName: CT_SOUTH_WEST - stateSubregionCode: CT1 stateSubregionName: CT_REST_ALL - stateCode: PA stateName: Pennsylvania stateSubregions: - stateSubregionCode: PA3 stateSubregionName: PA_NORTH_EAST - stateSubregionCode: PA2 stateSubregionName: PA_CENTRAL_NORTH - stateSubregionCode: PA5 stateSubregionName: PA_WEST - stateSubregionCode: PA4 stateSubregionName: PA_SOUTH - stateSubregionCode: PA1 stateSubregionName: PA_CENTRAL - stateCode: MA stateName: Massachusetts stateSubregions: - stateSubregionCode: MA2 stateSubregionName: MA_WEST - stateSubregionCode: MA1 stateSubregionName: MA_EAST - stateCode: RI stateName: Rhode Island stateSubregions: - stateSubregionCode: RI stateSubregionName: RI - stateCode: ME stateName: Maine stateSubregions: - stateSubregionCode: ME2 stateSubregionName: ME_WEST - stateSubregionCode: ME1 stateSubregionName: ME_EAST - stateCode: NH stateName: New Hampshire stateSubregions: - stateSubregionCode: NH stateSubregionName: NH - stateCode: NY stateName: New York stateSubregions: - stateSubregionCode: NY1 stateSubregionName: NY_BROOKLYN - stateSubregionCode: NY3 stateSubregionName: NY_NORTH_CENTRAL - stateSubregionCode: NY2 stateSubregionName: NY_CENTRAL - stateSubregionCode: NY5 stateSubregionName: NY_SOUTH - stateSubregionCode: NY4 stateSubregionName: NY_NORTH_WEST - stateCode: NJ stateName: New Jersey stateSubregions: - stateSubregionCode: NJ2 stateSubregionName: NJ_NORTH - stateSubregionCode: NJ1 stateSubregionName: NJ_CENTRAL - stateSubregionCode: NJ4 stateSubregionName: NJ_KEARNY - stateSubregionCode: NJ3 stateSubregionName: NJ_SOUTH - stateCode: VT stateName: Vermont stateSubregions: - stateSubregionCode: VT stateSubregionName: VT - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST - stateCode: MN stateName: Minnesota stateSubregions: - stateSubregionCode: MN2 stateSubregionName: MN_REST_ALL - stateSubregionCode: MN1 stateSubregionName: MN_CENTRAL_EAST - stateCode: MO stateName: Missouri stateSubregions: - stateSubregionCode: MO3 stateSubregionName: MO_WEST - stateSubregionCode: MO2 stateSubregionName: MO_SOUTH - stateSubregionCode: MO1 stateSubregionName: MO_EAST - stateCode: WI stateName: Wisconsin stateSubregions: - stateSubregionCode: WI2 stateSubregionName: WI_WEST - stateSubregionCode: WI1 stateSubregionName: WI_EAST - stateCode: IL stateName: Illinois stateSubregions: - stateSubregionCode: IL5 stateSubregionName: IL_SOUTHWEST - stateSubregionCode: IL4 stateSubregionName: IL_SOUTHEAST - stateSubregionCode: IL1 stateSubregionName: IL_CHICAGO - stateSubregionCode: IL3 stateSubregionName: IL_NORTH_WEST - stateSubregionCode: IL2 stateSubregionName: IL_NORTH_EAST - stateCode: IN stateName: Indiana stateSubregions: - stateSubregionCode: IN1 stateSubregionName: IN_CENTRAL_AND_EAST - stateSubregionCode: IN3 stateSubregionName: IN_SOUTH - stateSubregionCode: IN2 stateSubregionName: IN_NORTH - stateSubregionCode: IN4 stateSubregionName: IN_WEST - stateCode: ND stateName: North Dakota stateSubregions: - stateSubregionCode: ND stateSubregionName: ND - stateCode: NE stateName: Nebraska stateSubregions: - stateSubregionCode: NE stateSubregionName: NE - stateCode: KS stateName: Kansas stateSubregions: - stateSubregionCode: KS2 stateSubregionName: KS_WEST - stateSubregionCode: KS1 stateSubregionName: KS_EAST - stateCode: IA stateName: Iowa stateSubregions: - stateSubregionCode: IA2 stateSubregionName: IA_REST - stateSubregionCode: IA1 stateSubregionName: IA_CENTRAL - stateCode: OH stateName: Ohio stateSubregions: - stateSubregionCode: OH1 stateSubregionName: OH_CENTRAL - stateSubregionCode: OH3 stateSubregionName: OH_SOUTH_EAST - stateSubregionCode: OH2 stateSubregionName: OH_NORTH - stateSubregionCode: OH4 stateSubregionName: OH_WEST - stateCode: MI stateName: Michigan stateSubregions: - stateSubregionCode: MI2 stateSubregionName: MI_NORTH - stateSubregionCode: MI1 stateSubregionName: MI_CENTRAL - stateSubregionCode: MI3 stateSubregionName: MI_SOUTH_EAST - subRegionCode: SO subRegionName: SO states: - stateCode: DE stateName: Delaware stateSubregions: - stateSubregionCode: DE stateSubregionName: DE - stateCode: TX stateName: Texas stateSubregions: - stateSubregionCode: TX6 stateSubregionName: TX_NORTH_EAST - stateSubregionCode: TX5 stateSubregionName: TX_HOUSTON - stateSubregionCode: TX8 stateSubregionName: TX_SOUTH - stateSubregionCode: TX7 stateSubregionName: TX_NORTH_WEST - stateSubregionCode: TX9 stateSubregionName: TX_SOUTH_EAST - stateSubregionCode: TX10 stateSubregionName: TX_SOUTH_WEST - stateSubregionCode: TX2 stateSubregionName: TX_CENTRAL_NORTH - stateSubregionCode: TX1 stateSubregionName: TX_CENTRAL - stateSubregionCode: TX4 stateSubregionName: TX_DALLAS - stateSubregionCode: TX3 stateSubregionName: TX_CENTRAL_WEST - stateCode: FL stateName: Florida stateSubregions: - stateSubregionCode: FL2 stateSubregionName: FL_CENTRAL_WEST - stateSubregionCode: FL1 stateSubregionName: FL_CENTRAL_EAST - stateSubregionCode: FL4 stateSubregionName: FL_NORTH - stateSubregionCode: FL3 stateSubregionName: FL_MIAMI - stateSubregionCode: FL6 stateSubregionName: FL_SOUTH_WEST - stateSubregionCode: FL5 stateSubregionName: FL_SOUTH_EAST - stateCode: MS stateName: Mississippi stateSubregions: - stateSubregionCode: MS2 stateSubregionName: MS_SOUTH - stateSubregionCode: MS1 stateSubregionName: MS_NORTH - stateCode: AL stateName: Alabama stateSubregions: - stateSubregionCode: AL1 stateSubregionName: AL_NORTH - stateSubregionCode: AL2 stateSubregionName: AL_SOUTH - stateCode: VA stateName: Virginia stateSubregions: - stateSubregionCode: VA1 stateSubregionName: VA_CENTRAL - stateSubregionCode: VA3 stateSubregionName: VA_SOUTH_EAST - stateSubregionCode: VA2 stateSubregionName: VA_NORTH - stateSubregionCode: VA4 stateSubregionName: VA_SOUTH_WEST - stateCode: KY stateName: Kentucky stateSubregions: - stateSubregionCode: KY2 stateSubregionName: KY_WEST - stateSubregionCode: KY1 stateSubregionName: KY_EAST - stateCode: SC stateName: South Carolina stateSubregions: - stateSubregionCode: SC2 stateSubregionName: SC_NORTH - stateSubregionCode: SC1 stateSubregionName: SC_CENTRAL - stateSubregionCode: SC3 stateSubregionName: SC_SOUTH - stateCode: AR stateName: Arkansas stateSubregions: - stateSubregionCode: AR2 stateSubregionName: AR_WEST - stateSubregionCode: AR1 stateSubregionName: AR_EAST - stateCode: LA stateName: Louisiana stateSubregions: - stateSubregionCode: LA1 stateSubregionName: LA_NORTH - stateSubregionCode: LA2 stateSubregionName: LA_SOUTH - stateCode: NC stateName: North Carolina stateSubregions: - stateSubregionCode: NC1 stateSubregionName: NC_EAST - stateSubregionCode: NC3 stateSubregionName: NC_SOUTH - stateSubregionCode: NC2 stateSubregionName: NC_NORTH - stateSubregionCode: NC4 stateSubregionName: NC_WEST - stateCode: MD stateName: Maryland stateSubregions: - stateSubregionCode: MD1 stateSubregionName: MD_CENTRAL - stateSubregionCode: MD2 stateSubregionName: MD_REST_ALL - stateCode: GA stateName: Georgia stateSubregions: - stateSubregionCode: GA2 stateSubregionName: GA_CENTRAL - stateSubregionCode: GA1 stateSubregionName: GA_ATLANTA - stateSubregionCode: GA4 stateSubregionName: GA_NORTH_WEST - stateSubregionCode: GA3 stateSubregionName: GA_NORTH_EAST - stateSubregionCode: GA5 stateSubregionName: GA_SOUTH - stateCode: TN stateName: Tennessee stateSubregions: - stateSubregionCode: TN2 stateSubregionName: TN_EAST - stateSubregionCode: TN1 stateSubregionName: TN_CENTRAL - stateSubregionCode: TN3 stateSubregionName: TN_WEST - stateCode: OK stateName: Oklahoma stateSubregions: - stateSubregionCode: OK2 stateSubregionName: OK_REST_ALL - stateSubregionCode: OK1 stateSubregionName: OK_NORTH_EAST - stateCode: WV stateName: West Virginia stateSubregions: - stateSubregionCode: WV1 stateSubregionName: WV_EAST - stateSubregionCode: WV2 stateSubregionName: WV_WEST - stateCode: DC stateName: District of Columbia stateSubregions: - stateSubregionCode: DC stateSubregionName: DC - subRegionCode: WE subRegionName: WE states: - stateCode: WY stateName: Wyoming stateSubregions: - stateSubregionCode: WY stateSubregionName: WY - stateCode: OR stateName: Oregon stateSubregions: - stateSubregionCode: OR1 stateSubregionName: OR_CENTRAL - stateSubregionCode: OR2 stateSubregionName: OR_NORTH_WEST - stateCode: MT stateName: Montana stateSubregions: - stateSubregionCode: MT stateSubregionName: MT - stateCode: NV stateName: Nevada stateSubregions: - stateSubregionCode: NV2 stateSubregionName: NV_NORTH - stateSubregionCode: NV1 stateSubregionName: NV_LAS_VEGAS - stateSubregionCode: NV3 stateSubregionName: NV_SOUTH - stateCode: AZ stateName: Arizona stateSubregions: - stateSubregionCode: AZ1 stateSubregionName: AZ_NORTH - stateSubregionCode: AZ2 stateSubregionName: AZ_PHOENIX - stateSubregionCode: AZ3 stateSubregionName: AZ_SOUTH - stateCode: WA stateName: Washington stateSubregions: - stateSubregionCode: WA stateSubregionName: WA - stateCode: ID stateName: Idaho stateSubregions: - stateSubregionCode: ID1 stateSubregionName: ID_BOISE_AND_NAMPA - stateSubregionCode: ID2 stateSubregionName: ID_NORTH_AND_EAST - stateCode: CO stateName: Colorado stateSubregions: - stateSubregionCode: CO2 stateSubregionName: CO_REST_ALL - stateSubregionCode: CO1 stateSubregionName: CO_CENTRAL - stateCode: CA stateName: California stateSubregions: - stateSubregionCode: CA13 stateSubregionName: CA_SAN_DIEGO_COUNTY - stateSubregionCode: CA12 stateSubregionName: CA_SAN_DIEGO - stateSubregionCode: CA11 stateSubregionName: CA_SAN_BERNARDINO - stateSubregionCode: CA10 stateSubregionName: "CA_RIVERSIDE_IMPERIAL\t" - stateSubregionCode: CA2 stateSubregionName: CA_CENTRAL_NORTH - stateSubregionCode: CA1 stateSubregionName: CA_CENTRAL - stateSubregionCode: CA4 stateSubregionName: CA_CENTRAL_WEST - stateSubregionCode: CA3 stateSubregionName: CA_CENTRAL_SOUTH - stateSubregionCode: CA6 stateSubregionName: CA_LOS_ANGELES - stateSubregionCode: CA5 stateSubregionName: CA_LONG_BEACH - stateSubregionCode: CA8 stateSubregionName: CA_NORTH - stateSubregionCode: CA7 stateSubregionName: CA_LOS_ANGELES_VENTURA_COUNTY - stateSubregionCode: CA9 stateSubregionName: CA_ONTARIO - stateSubregionCode: CA15 stateSubregionName: CA_SANTA_ANA - stateSubregionCode: CA14 stateSubregionName: CA_SAN_FRANCISCO - stateCode: UT stateName: Utah stateSubregions: - stateSubregionCode: UT1 stateSubregionName: UT_NORTH - stateSubregionCode: UT2 stateSubregionName: UT_SOUTH - stateCode: NM stateName: New Mexico stateSubregions: - stateSubregionCode: NM1 stateSubregionName: NM_CENTRAL - stateSubregionCode: NM2 stateSubregionName: NM_REST_ALL addressTypes: - STREET transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD - regions: - regionCode: C regionName: 48 State addressTypes: - PO_BOX transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD - regions: - regionCode: H regionName: AK and HI - regionCode: P regionName: US Protectorates addressTypes: - PO_BOX transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD sample4: value: name: Template 2 type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: H regionName: AK and HI - regionCode: P regionName: US Protectorates addressTypes: - PO_BOX - STREET transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD sample5: value: name: Template 2 type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: A regionName: APO/FPO addressTypes: - MILITARY transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD sample6: value: name: Template 2 type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - PO_BOX transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD - regions: - regionCode: H regionName: AK and HI - regionCode: P regionName: US Protectorates addressTypes: - PO_BOX - STREET transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD sample7: value: name: Template 2 type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: NE subRegionName: NE states: - stateCode: MA stateName: Massachusetts stateSubregions: - stateSubregionCode: MA2 stateSubregionName: MA_WEST - stateSubregionCode: MA1 stateSubregionName: MA_EAST - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST - stateCode: MO stateName: Missouri stateSubregions: - stateSubregionCode: MO3 stateSubregionName: MO_WEST - stateSubregionCode: MO2 stateSubregionName: MO_SOUTH - stateSubregionCode: MO1 stateSubregionName: MO_EAST - stateCode: IL stateName: Illinois stateSubregions: - stateSubregionCode: IL5 stateSubregionName: IL_SOUTHWEST - stateSubregionCode: IL4 stateSubregionName: IL_SOUTHEAST - stateSubregionCode: IL1 stateSubregionName: IL_CHICAGO - stateSubregionCode: IL3 stateSubregionName: IL_NORTH_WEST - stateSubregionCode: IL2 stateSubregionName: IL_NORTH_EAST - stateCode: ND stateName: North Dakota stateSubregions: - stateSubregionCode: ND stateSubregionName: ND - stateCode: KS stateName: Kansas stateSubregions: - stateSubregionCode: KS2 stateSubregionName: KS_WEST - stateSubregionCode: KS1 stateSubregionName: KS_EAST - subRegionCode: SO subRegionName: SO states: - stateCode: NC stateName: North Carolina stateSubregions: - stateSubregionCode: NC1 stateSubregionName: NC_EAST - stateSubregionCode: NC3 stateSubregionName: NC_SOUTH - stateSubregionCode: NC2 stateSubregionName: NC_NORTH - stateSubregionCode: NC4 stateSubregionName: NC_WEST - stateCode: MS stateName: Mississippi stateSubregions: - stateSubregionCode: MS2 stateSubregionName: MS_SOUTH - stateSubregionCode: MS1 stateSubregionName: MS_NORTH - stateCode: TN stateName: Tennessee stateSubregions: - stateSubregionCode: TN2 stateSubregionName: TN_EAST - stateSubregionCode: TN1 stateSubregionName: TN_CENTRAL - stateSubregionCode: TN3 stateSubregionName: TN_WEST - stateCode: VA stateName: Virginia stateSubregions: - stateSubregionCode: VA1 stateSubregionName: VA_CENTRAL - stateSubregionCode: VA3 stateSubregionName: VA_SOUTH_EAST - stateSubregionCode: VA2 stateSubregionName: VA_NORTH - stateSubregionCode: VA4 stateSubregionName: VA_SOUTH_WEST - subRegionCode: WE subRegionName: WE states: - stateCode: AZ stateName: Arizona stateSubregions: - stateSubregionCode: AZ1 stateSubregionName: AZ_NORTH - stateSubregionCode: AZ2 stateSubregionName: AZ_PHOENIX - stateSubregionCode: AZ3 stateSubregionName: AZ_SOUTH addressTypes: - STREET transitTime: 3 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerItem: amount: 0 currency: USD sample8: value: name: Next Day type: CUSTOM rateModelType: TIERED_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 10.06 maxLimit: -1 shipCharge: amount: 2 currency: USD - minLimit: 0 maxLimit: 10.05 shipCharge: amount: 1 currency: USD sample9: value: name: Next Day type: DELIVERR rateModelType: TIERED_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 10.06 maxLimit: -1 shipCharge: amount: 2 currency: USD - minLimit: 0 maxLimit: 10.05 shipCharge: amount: 1 currency: USD sample10: value: name: Template 3 type: CUSTOM rateModelType: TIERED_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: NE subRegionName: NE states: - stateCode: CT stateName: Connecticut stateSubregions: - stateSubregionCode: CT2 stateSubregionName: CT_SOUTH_WEST - stateSubregionCode: CT1 stateSubregionName: CT_REST_ALL - stateCode: PA stateName: Pennsylvania stateSubregions: - stateSubregionCode: PA3 stateSubregionName: PA_NORTH_EAST - stateSubregionCode: PA2 stateSubregionName: PA_CENTRAL_NORTH - stateSubregionCode: PA5 stateSubregionName: PA_WEST - stateSubregionCode: PA4 stateSubregionName: PA_SOUTH - stateSubregionCode: PA1 stateSubregionName: PA_CENTRAL - stateCode: MA stateName: Massachusetts stateSubregions: - stateSubregionCode: MA2 stateSubregionName: MA_WEST - stateSubregionCode: MA1 stateSubregionName: MA_EAST - stateCode: RI stateName: Rhode Island stateSubregions: - stateSubregionCode: RI stateSubregionName: RI - stateCode: ME stateName: Maine stateSubregions: - stateSubregionCode: ME2 stateSubregionName: ME_WEST - stateSubregionCode: ME1 stateSubregionName: ME_EAST - stateCode: NH stateName: New Hampshire stateSubregions: - stateSubregionCode: NH stateSubregionName: NH - stateCode: NY stateName: New York stateSubregions: - stateSubregionCode: NY1 stateSubregionName: NY_BROOKLYN - stateSubregionCode: NY3 stateSubregionName: NY_NORTH_CENTRAL - stateSubregionCode: NY2 stateSubregionName: NY_CENTRAL - stateSubregionCode: NY5 stateSubregionName: NY_SOUTH - stateSubregionCode: NY4 stateSubregionName: NY_NORTH_WEST - stateCode: NJ stateName: New Jersey stateSubregions: - stateSubregionCode: NJ2 stateSubregionName: NJ_NORTH - stateSubregionCode: NJ1 stateSubregionName: NJ_CENTRAL - stateSubregionCode: NJ4 stateSubregionName: NJ_KEARNY - stateSubregionCode: NJ3 stateSubregionName: NJ_SOUTH - stateCode: VT stateName: Vermont stateSubregions: - stateSubregionCode: VT stateSubregionName: VT - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST - stateCode: MN stateName: Minnesota stateSubregions: - stateSubregionCode: MN2 stateSubregionName: MN_REST_ALL - stateSubregionCode: MN1 stateSubregionName: MN_CENTRAL_EAST - stateCode: MO stateName: Missouri stateSubregions: - stateSubregionCode: MO3 stateSubregionName: MO_WEST - stateSubregionCode: MO2 stateSubregionName: MO_SOUTH - stateSubregionCode: MO1 stateSubregionName: MO_EAST - stateCode: WI stateName: Wisconsin stateSubregions: - stateSubregionCode: WI2 stateSubregionName: WI_WEST - stateSubregionCode: WI1 stateSubregionName: WI_EAST - stateCode: IL stateName: Illinois stateSubregions: - stateSubregionCode: IL5 stateSubregionName: IL_SOUTHWEST - stateSubregionCode: IL4 stateSubregionName: IL_SOUTHEAST - stateSubregionCode: IL1 stateSubregionName: IL_CHICAGO - stateSubregionCode: IL3 stateSubregionName: IL_NORTH_WEST - stateSubregionCode: IL2 stateSubregionName: IL_NORTH_EAST - stateCode: IN stateName: Indiana stateSubregions: - stateSubregionCode: IN1 stateSubregionName: IN_CENTRAL_AND_EAST - stateSubregionCode: IN3 stateSubregionName: IN_SOUTH - stateSubregionCode: IN2 stateSubregionName: IN_NORTH - stateSubregionCode: IN4 stateSubregionName: IN_WEST - stateCode: ND stateName: North Dakota stateSubregions: - stateSubregionCode: ND stateSubregionName: ND - stateCode: NE stateName: Nebraska stateSubregions: - stateSubregionCode: NE stateSubregionName: NE - stateCode: KS stateName: Kansas stateSubregions: - stateSubregionCode: KS2 stateSubregionName: KS_WEST - stateSubregionCode: KS1 stateSubregionName: KS_EAST - stateCode: IA stateName: Iowa stateSubregions: - stateSubregionCode: IA2 stateSubregionName: IA_REST - stateSubregionCode: IA1 stateSubregionName: IA_CENTRAL - stateCode: OH stateName: Ohio stateSubregions: - stateSubregionCode: OH1 stateSubregionName: OH_CENTRAL - stateSubregionCode: OH3 stateSubregionName: OH_SOUTH_EAST - stateSubregionCode: OH2 stateSubregionName: OH_NORTH - stateSubregionCode: OH4 stateSubregionName: OH_WEST - stateCode: MI stateName: Michigan stateSubregions: - stateSubregionCode: MI2 stateSubregionName: MI_NORTH - stateSubregionCode: MI1 stateSubregionName: MI_CENTRAL - stateSubregionCode: MI3 stateSubregionName: MI_SOUTH_EAST - subRegionCode: SO subRegionName: SO states: - stateCode: DE stateName: Delaware stateSubregions: - stateSubregionCode: DE stateSubregionName: DE - stateCode: TX stateName: Texas stateSubregions: - stateSubregionCode: TX6 stateSubregionName: TX_NORTH_EAST - stateSubregionCode: TX5 stateSubregionName: TX_HOUSTON - stateSubregionCode: TX8 stateSubregionName: TX_SOUTH - stateSubregionCode: TX7 stateSubregionName: TX_NORTH_WEST - stateSubregionCode: TX9 stateSubregionName: TX_SOUTH_EAST - stateSubregionCode: TX10 stateSubregionName: TX_SOUTH_WEST - stateSubregionCode: TX2 stateSubregionName: TX_CENTRAL_NORTH - stateSubregionCode: TX1 stateSubregionName: TX_CENTRAL - stateSubregionCode: TX4 stateSubregionName: TX_DALLAS - stateSubregionCode: TX3 stateSubregionName: TX_CENTRAL_WEST - stateCode: FL stateName: Florida stateSubregions: - stateSubregionCode: FL2 stateSubregionName: FL_CENTRAL_WEST - stateSubregionCode: FL1 stateSubregionName: FL_CENTRAL_EAST - stateSubregionCode: FL4 stateSubregionName: FL_NORTH - stateSubregionCode: FL3 stateSubregionName: FL_MIAMI - stateSubregionCode: FL6 stateSubregionName: FL_SOUTH_WEST - stateSubregionCode: FL5 stateSubregionName: FL_SOUTH_EAST - stateCode: MS stateName: Mississippi stateSubregions: - stateSubregionCode: MS2 stateSubregionName: MS_SOUTH - stateSubregionCode: MS1 stateSubregionName: MS_NORTH - stateCode: AL stateName: Alabama stateSubregions: - stateSubregionCode: AL1 stateSubregionName: AL_NORTH - stateSubregionCode: AL2 stateSubregionName: AL_SOUTH - stateCode: VA stateName: Virginia stateSubregions: - stateSubregionCode: VA1 stateSubregionName: VA_CENTRAL - stateSubregionCode: VA3 stateSubregionName: VA_SOUTH_EAST - stateSubregionCode: VA2 stateSubregionName: VA_NORTH - stateSubregionCode: VA4 stateSubregionName: VA_SOUTH_WEST - stateCode: KY stateName: Kentucky stateSubregions: - stateSubregionCode: KY2 stateSubregionName: KY_WEST - stateSubregionCode: KY1 stateSubregionName: KY_EAST - stateCode: SC stateName: South Carolina stateSubregions: - stateSubregionCode: SC2 stateSubregionName: SC_NORTH - stateSubregionCode: SC1 stateSubregionName: SC_CENTRAL - stateSubregionCode: SC3 stateSubregionName: SC_SOUTH - stateCode: AR stateName: Arkansas stateSubregions: - stateSubregionCode: AR2 stateSubregionName: AR_WEST - stateSubregionCode: AR1 stateSubregionName: AR_EAST - stateCode: LA stateName: Louisiana stateSubregions: - stateSubregionCode: LA1 stateSubregionName: LA_NORTH - stateSubregionCode: LA2 stateSubregionName: LA_SOUTH - stateCode: NC stateName: North Carolina stateSubregions: - stateSubregionCode: NC1 stateSubregionName: NC_EAST - stateSubregionCode: NC3 stateSubregionName: NC_SOUTH - stateSubregionCode: NC2 stateSubregionName: NC_NORTH - stateSubregionCode: NC4 stateSubregionName: NC_WEST - stateCode: MD stateName: Maryland stateSubregions: - stateSubregionCode: MD1 stateSubregionName: MD_CENTRAL - stateSubregionCode: MD2 stateSubregionName: MD_REST_ALL - stateCode: GA stateName: Georgia stateSubregions: - stateSubregionCode: GA2 stateSubregionName: GA_CENTRAL - stateSubregionCode: GA1 stateSubregionName: GA_ATLANTA - stateSubregionCode: GA4 stateSubregionName: GA_NORTH_WEST - stateSubregionCode: GA3 stateSubregionName: GA_NORTH_EAST - stateSubregionCode: GA5 stateSubregionName: GA_SOUTH - stateCode: TN stateName: Tennessee stateSubregions: - stateSubregionCode: TN2 stateSubregionName: TN_EAST - stateSubregionCode: TN1 stateSubregionName: TN_CENTRAL - stateSubregionCode: TN3 stateSubregionName: TN_WEST - stateCode: OK stateName: Oklahoma stateSubregions: - stateSubregionCode: OK2 stateSubregionName: OK_REST_ALL - stateSubregionCode: OK1 stateSubregionName: OK_NORTH_EAST - stateCode: WV stateName: West Virginia stateSubregions: - stateSubregionCode: WV1 stateSubregionName: WV_EAST - stateSubregionCode: WV2 stateSubregionName: WV_WEST - stateCode: DC stateName: District of Columbia stateSubregions: - stateSubregionCode: DC stateSubregionName: DC - subRegionCode: WE subRegionName: WE states: - stateCode: WY stateName: Wyoming stateSubregions: - stateSubregionCode: WY stateSubregionName: WY - stateCode: OR stateName: Oregon stateSubregions: - stateSubregionCode: OR1 stateSubregionName: OR_CENTRAL - stateSubregionCode: OR2 stateSubregionName: OR_NORTH_WEST - stateCode: MT stateName: Montana stateSubregions: - stateSubregionCode: MT stateSubregionName: MT - stateCode: NV stateName: Nevada stateSubregions: - stateSubregionCode: NV2 stateSubregionName: NV_NORTH - stateSubregionCode: NV1 stateSubregionName: NV_LAS_VEGAS - stateSubregionCode: NV3 stateSubregionName: NV_SOUTH - stateCode: AZ stateName: Arizona stateSubregions: - stateSubregionCode: AZ1 stateSubregionName: AZ_NORTH - stateSubregionCode: AZ2 stateSubregionName: AZ_PHOENIX - stateSubregionCode: AZ3 stateSubregionName: AZ_SOUTH - stateCode: WA stateName: Washington stateSubregions: - stateSubregionCode: WA stateSubregionName: WA - stateCode: ID stateName: Idaho stateSubregions: - stateSubregionCode: ID1 stateSubregionName: ID_BOISE_AND_NAMPA - stateSubregionCode: ID2 stateSubregionName: ID_NORTH_AND_EAST - stateCode: CO stateName: Colorado stateSubregions: - stateSubregionCode: CO2 stateSubregionName: CO_REST_ALL - stateSubregionCode: CO1 stateSubregionName: CO_CENTRAL - stateCode: CA stateName: California stateSubregions: - stateSubregionCode: CA13 stateSubregionName: CA_SAN_DIEGO_COUNTY - stateSubregionCode: CA12 stateSubregionName: CA_SAN_DIEGO - stateSubregionCode: CA11 stateSubregionName: CA_SAN_BERNARDINO - stateSubregionCode: CA10 stateSubregionName: "CA_RIVERSIDE_IMPERIAL\t" - stateSubregionCode: CA2 stateSubregionName: CA_CENTRAL_NORTH - stateSubregionCode: CA1 stateSubregionName: CA_CENTRAL - stateSubregionCode: CA4 stateSubregionName: CA_CENTRAL_WEST - stateSubregionCode: CA3 stateSubregionName: CA_CENTRAL_SOUTH - stateSubregionCode: CA6 stateSubregionName: CA_LOS_ANGELES - stateSubregionCode: CA5 stateSubregionName: CA_LONG_BEACH - stateSubregionCode: CA8 stateSubregionName: CA_NORTH - stateSubregionCode: CA7 stateSubregionName: CA_LOS_ANGELES_VENTURA_COUNTY - stateSubregionCode: CA9 stateSubregionName: CA_ONTARIO - stateSubregionCode: CA15 stateSubregionName: CA_SANTA_ANA - stateSubregionCode: CA14 stateSubregionName: CA_SAN_FRANCISCO - stateCode: UT stateName: Utah stateSubregions: - stateSubregionCode: UT1 stateSubregionName: UT_NORTH - stateSubregionCode: UT2 stateSubregionName: UT_SOUTH - stateCode: NM stateName: New Mexico stateSubregions: - stateSubregionCode: NM1 stateSubregionName: NM_CENTRAL - stateSubregionCode: NM2 stateSubregionName: NM_REST_ALL addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - regions: - regionCode: C regionName: 48 State addressTypes: - PO_BOX transitTime: 3 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - regions: - regionCode: H regionName: AK and HI - regionCode: P regionName: US Protectorates addressTypes: - PO_BOX - STREET transitTime: 3 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - regions: - regionCode: A regionName: APO/FPO addressTypes: - MILITARY transitTime: 3 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD sample11: value: name: Paid Standard Template 2 type: CUSTOM rateModelType: TIERED_PRICING status: INACTIVE shippingMethods: - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: SO subRegionName: SO states: - stateCode: AR stateName: Arkansas stateSubregions: - stateSubregionCode: AR2 stateSubregionName: AR_WEST addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 19 currency: USD - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: NE subRegionName: NE states: - stateCode: CT stateName: Connecticut stateSubregions: - stateSubregionCode: CT2 stateSubregionName: CT_SOUTH_WEST - stateSubregionCode: CT1 stateSubregionName: CT_REST_ALL - stateCode: PA stateName: Pennsylvania stateSubregions: - stateSubregionCode: PA3 stateSubregionName: PA_NORTH_EAST - stateSubregionCode: PA2 stateSubregionName: PA_CENTRAL_NORTH - stateSubregionCode: PA5 stateSubregionName: PA_WEST - stateSubregionCode: PA4 stateSubregionName: PA_SOUTH - stateSubregionCode: PA1 stateSubregionName: PA_CENTRAL - stateCode: MA stateName: Massachusetts stateSubregions: - stateSubregionCode: MA2 stateSubregionName: MA_WEST - stateSubregionCode: MA1 stateSubregionName: MA_EAST - stateCode: RI stateName: Rhode Island stateSubregions: - stateSubregionCode: RI stateSubregionName: RI - stateCode: ME stateName: Maine stateSubregions: - stateSubregionCode: ME2 stateSubregionName: ME_WEST - stateSubregionCode: ME1 stateSubregionName: ME_EAST - stateCode: NH stateName: New Hampshire stateSubregions: - stateSubregionCode: NH stateSubregionName: NH - stateCode: NY stateName: New York stateSubregions: - stateSubregionCode: NY1 stateSubregionName: NY_BROOKLYN - stateSubregionCode: NY3 stateSubregionName: NY_NORTH_CENTRAL - stateSubregionCode: NY2 stateSubregionName: NY_CENTRAL - stateSubregionCode: NY5 stateSubregionName: NY_SOUTH - stateSubregionCode: NY4 stateSubregionName: NY_NORTH_WEST - stateCode: NJ stateName: New Jersey stateSubregions: - stateSubregionCode: NJ2 stateSubregionName: NJ_NORTH - stateSubregionCode: NJ1 stateSubregionName: NJ_CENTRAL - stateSubregionCode: NJ4 stateSubregionName: NJ_KEARNY - stateSubregionCode: NJ3 stateSubregionName: NJ_SOUTH - stateCode: VT stateName: Vermont stateSubregions: - stateSubregionCode: VT stateSubregionName: VT - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST - stateCode: MN stateName: Minnesota stateSubregions: - stateSubregionCode: MN2 stateSubregionName: MN_REST_ALL - stateSubregionCode: MN1 stateSubregionName: MN_CENTRAL_EAST - stateCode: MO stateName: Missouri stateSubregions: - stateSubregionCode: MO3 stateSubregionName: MO_WEST - stateSubregionCode: MO2 stateSubregionName: MO_SOUTH - stateSubregionCode: MO1 stateSubregionName: MO_EAST - stateCode: WI stateName: Wisconsin stateSubregions: - stateSubregionCode: WI2 stateSubregionName: WI_WEST - stateSubregionCode: WI1 stateSubregionName: WI_EAST - stateCode: IL stateName: Illinois stateSubregions: - stateSubregionCode: IL5 stateSubregionName: IL_SOUTHWEST - stateSubregionCode: IL4 stateSubregionName: IL_SOUTHEAST - stateSubregionCode: IL1 stateSubregionName: IL_CHICAGO - stateSubregionCode: IL3 stateSubregionName: IL_NORTH_WEST - stateSubregionCode: IL2 stateSubregionName: IL_NORTH_EAST - stateCode: IN stateName: Indiana stateSubregions: - stateSubregionCode: IN1 stateSubregionName: IN_CENTRAL_AND_EAST - stateSubregionCode: IN3 stateSubregionName: IN_SOUTH - stateSubregionCode: IN2 stateSubregionName: IN_NORTH - stateSubregionCode: IN4 stateSubregionName: IN_WEST - stateCode: ND stateName: North Dakota stateSubregions: - stateSubregionCode: ND stateSubregionName: ND - stateCode: NE stateName: Nebraska stateSubregions: - stateSubregionCode: NE stateSubregionName: NE - stateCode: KS stateName: Kansas stateSubregions: - stateSubregionCode: KS2 stateSubregionName: KS_WEST - stateSubregionCode: KS1 stateSubregionName: KS_EAST - stateCode: IA stateName: Iowa stateSubregions: - stateSubregionCode: IA2 stateSubregionName: IA_REST - stateSubregionCode: IA1 stateSubregionName: IA_CENTRAL - stateCode: OH stateName: Ohio stateSubregions: - stateSubregionCode: OH1 stateSubregionName: OH_CENTRAL - stateSubregionCode: OH3 stateSubregionName: OH_SOUTH_EAST - stateSubregionCode: OH2 stateSubregionName: OH_NORTH - stateSubregionCode: OH4 stateSubregionName: OH_WEST - stateCode: MI stateName: Michigan stateSubregions: - stateSubregionCode: MI2 stateSubregionName: MI_NORTH - stateSubregionCode: MI1 stateSubregionName: MI_CENTRAL - stateSubregionCode: MI3 stateSubregionName: MI_SOUTH_EAST - subRegionCode: SO subRegionName: SO states: - stateCode: DE stateName: Delaware stateSubregions: - stateSubregionCode: DE stateSubregionName: DE - stateCode: TX stateName: Texas stateSubregions: - stateSubregionCode: TX6 stateSubregionName: TX_NORTH_EAST - stateSubregionCode: TX5 stateSubregionName: TX_HOUSTON - stateSubregionCode: TX8 stateSubregionName: TX_SOUTH - stateSubregionCode: TX7 stateSubregionName: TX_NORTH_WEST - stateSubregionCode: TX9 stateSubregionName: TX_SOUTH_EAST - stateSubregionCode: TX10 stateSubregionName: TX_SOUTH_WEST - stateSubregionCode: TX2 stateSubregionName: TX_CENTRAL_NORTH - stateSubregionCode: TX1 stateSubregionName: TX_CENTRAL - stateSubregionCode: TX4 stateSubregionName: TX_DALLAS - stateSubregionCode: TX3 stateSubregionName: TX_CENTRAL_WEST - stateCode: FL stateName: Florida stateSubregions: - stateSubregionCode: FL2 stateSubregionName: FL_CENTRAL_WEST - stateSubregionCode: FL1 stateSubregionName: FL_CENTRAL_EAST - stateSubregionCode: FL4 stateSubregionName: FL_NORTH - stateSubregionCode: FL3 stateSubregionName: FL_MIAMI - stateSubregionCode: FL6 stateSubregionName: FL_SOUTH_WEST - stateSubregionCode: FL5 stateSubregionName: FL_SOUTH_EAST - stateCode: MS stateName: Mississippi stateSubregions: - stateSubregionCode: MS2 stateSubregionName: MS_SOUTH - stateSubregionCode: MS1 stateSubregionName: MS_NORTH - stateCode: AL stateName: Alabama stateSubregions: - stateSubregionCode: AL1 stateSubregionName: AL_NORTH - stateSubregionCode: AL2 stateSubregionName: AL_SOUTH - stateCode: VA stateName: Virginia stateSubregions: - stateSubregionCode: VA1 stateSubregionName: VA_CENTRAL - stateSubregionCode: VA3 stateSubregionName: VA_SOUTH_EAST - stateSubregionCode: VA2 stateSubregionName: VA_NORTH - stateSubregionCode: VA4 stateSubregionName: VA_SOUTH_WEST - stateCode: KY stateName: Kentucky stateSubregions: - stateSubregionCode: KY2 stateSubregionName: KY_WEST - stateSubregionCode: KY1 stateSubregionName: KY_EAST - stateCode: SC stateName: South Carolina stateSubregions: - stateSubregionCode: SC2 stateSubregionName: SC_NORTH - stateSubregionCode: SC1 stateSubregionName: SC_CENTRAL - stateSubregionCode: SC3 stateSubregionName: SC_SOUTH - stateCode: AR stateName: Arkansas stateSubregions: - stateSubregionCode: AR1 stateSubregionName: AR_EAST - stateCode: LA stateName: Louisiana stateSubregions: - stateSubregionCode: LA1 stateSubregionName: LA_NORTH - stateSubregionCode: LA2 stateSubregionName: LA_SOUTH - stateCode: NC stateName: North Carolina stateSubregions: - stateSubregionCode: NC1 stateSubregionName: NC_EAST - stateSubregionCode: NC3 stateSubregionName: NC_SOUTH - stateSubregionCode: NC2 stateSubregionName: NC_NORTH - stateSubregionCode: NC4 stateSubregionName: NC_WEST - stateCode: MD stateName: Maryland stateSubregions: - stateSubregionCode: MD1 stateSubregionName: MD_CENTRAL - stateSubregionCode: MD2 stateSubregionName: MD_REST_ALL - stateCode: GA stateName: Georgia stateSubregions: - stateSubregionCode: GA2 stateSubregionName: GA_CENTRAL - stateSubregionCode: GA1 stateSubregionName: GA_ATLANTA - stateSubregionCode: GA4 stateSubregionName: GA_NORTH_WEST - stateSubregionCode: GA3 stateSubregionName: GA_NORTH_EAST - stateSubregionCode: GA5 stateSubregionName: GA_SOUTH - stateCode: TN stateName: Tennessee stateSubregions: - stateSubregionCode: TN2 stateSubregionName: TN_EAST - stateSubregionCode: TN1 stateSubregionName: TN_CENTRAL - stateSubregionCode: TN3 stateSubregionName: TN_WEST - stateCode: OK stateName: Oklahoma stateSubregions: - stateSubregionCode: OK2 stateSubregionName: OK_REST_ALL - stateSubregionCode: OK1 stateSubregionName: OK_NORTH_EAST - stateCode: WV stateName: West Virginia stateSubregions: - stateSubregionCode: WV1 stateSubregionName: WV_EAST - stateSubregionCode: WV2 stateSubregionName: WV_WEST - stateCode: DC stateName: District of Columbia stateSubregions: - stateSubregionCode: DC stateSubregionName: DC - subRegionCode: WE subRegionName: WE states: - stateCode: WY stateName: Wyoming stateSubregions: - stateSubregionCode: WY stateSubregionName: WY - stateCode: OR stateName: Oregon stateSubregions: - stateSubregionCode: OR1 stateSubregionName: OR_CENTRAL - stateSubregionCode: OR2 stateSubregionName: OR_NORTH_WEST - stateCode: MT stateName: Montana stateSubregions: - stateSubregionCode: MT stateSubregionName: MT - stateCode: NV stateName: Nevada stateSubregions: - stateSubregionCode: NV2 stateSubregionName: NV_NORTH - stateSubregionCode: NV1 stateSubregionName: NV_LAS_VEGAS - stateSubregionCode: NV3 stateSubregionName: NV_SOUTH - stateCode: AZ stateName: Arizona stateSubregions: - stateSubregionCode: AZ1 stateSubregionName: AZ_NORTH - stateSubregionCode: AZ2 stateSubregionName: AZ_PHOENIX - stateSubregionCode: AZ3 stateSubregionName: AZ_SOUTH - stateCode: WA stateName: Washington stateSubregions: - stateSubregionCode: WA stateSubregionName: WA - stateCode: ID stateName: Idaho stateSubregions: - stateSubregionCode: ID1 stateSubregionName: ID_BOISE_AND_NAMPA - stateSubregionCode: ID2 stateSubregionName: ID_NORTH_AND_EAST - stateCode: CO stateName: Colorado stateSubregions: - stateSubregionCode: CO2 stateSubregionName: CO_REST_ALL - stateSubregionCode: CO1 stateSubregionName: CO_CENTRAL - stateCode: CA stateName: California stateSubregions: - stateSubregionCode: CA13 stateSubregionName: CA_SAN_DIEGO_COUNTY - stateSubregionCode: CA12 stateSubregionName: CA_SAN_DIEGO - stateSubregionCode: CA11 stateSubregionName: CA_SAN_BERNARDINO - stateSubregionCode: CA10 stateSubregionName: "CA_RIVERSIDE_IMPERIAL\t" - stateSubregionCode: CA2 stateSubregionName: CA_CENTRAL_NORTH - stateSubregionCode: CA1 stateSubregionName: CA_CENTRAL - stateSubregionCode: CA4 stateSubregionName: CA_CENTRAL_WEST - stateSubregionCode: CA3 stateSubregionName: CA_CENTRAL_SOUTH - stateSubregionCode: CA6 stateSubregionName: CA_LOS_ANGELES - stateSubregionCode: CA5 stateSubregionName: CA_LONG_BEACH - stateSubregionCode: CA8 stateSubregionName: CA_NORTH - stateSubregionCode: CA7 stateSubregionName: CA_LOS_ANGELES_VENTURA_COUNTY - stateSubregionCode: CA9 stateSubregionName: CA_ONTARIO - stateSubregionCode: CA15 stateSubregionName: CA_SANTA_ANA - stateSubregionCode: CA14 stateSubregionName: CA_SAN_FRANCISCO - stateCode: UT stateName: Utah stateSubregions: - stateSubregionCode: UT1 stateSubregionName: UT_NORTH - stateSubregionCode: UT2 stateSubregionName: UT_SOUTH - stateCode: NM stateName: New Mexico stateSubregions: - stateSubregionCode: NM1 stateSubregionName: NM_CENTRAL - stateSubregionCode: NM2 stateSubregionName: NM_REST_ALL addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 0 maxLimit: 0.01 shipCharge: amount: 2 currency: USD - minLimit: 0.02 maxLimit: -1 shipCharge: amount: 10 currency: USD sample12: value: name: UMA automated template type: CUSTOM rateModelType: TIERED_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - regions: - regionCode: H regionName: AK and HI addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: SO subRegionName: South states: - stateCode: AR stateName: Arkansas stateSubregions: - stateSubregionCode: AR1 stateSubregionName: AR_EAST - stateCode: TX stateName: Texas stateSubregions: - stateSubregionCode: TX10 stateSubregionName: TX_SOUTH_WEST - stateSubregionCode: TX1 stateSubregionName: TX_CENTRAL - stateSubregionCode: TX2 stateSubregionName: TX_CENTRAL_NORTH - stateSubregionCode: TX4 stateSubregionName: TX_DALLAS - stateSubregionCode: TX6 stateSubregionName: TX_NORTH_EAST - stateCode: MS stateName: Mississippi stateSubregions: - stateSubregionCode: MS1 stateSubregionName: MS_NORTH - stateCode: OK stateName: Oklahoma stateSubregions: - stateSubregionCode: OK2 stateSubregionName: OK_REST_ALL - subRegionCode: WE subRegionName: West states: - stateCode: NV stateName: Nevada stateSubregions: - stateSubregionCode: NV2 stateSubregionName: NV_NORTH - stateCode: OR stateName: Oregon stateSubregions: - stateSubregionCode: OR2 stateSubregionName: OR_NORTH_WEST - stateCode: UT stateName: Utah stateSubregions: - stateSubregionCode: UT2 stateSubregionName: UT_SOUTH - stateSubregionCode: UT1 stateSubregionName: UT_NORTH - stateCode: CA stateName: California stateSubregions: - stateSubregionCode: CA1 stateSubregionName: CA_CENTRAL - stateSubregionCode: CA4 stateSubregionName: CA_CENTRAL_WEST - stateSubregionCode: CA8 stateSubregionName: CA_NORTH - stateCode: ID stateName: Idaho stateSubregions: - stateSubregionCode: ID2 stateSubregionName: ID_NORTH_AND_EAST - stateSubregionCode: ID1 stateSubregionName: ID_BOISE_AND_NAMPA - stateCode: AZ stateName: Arizona stateSubregions: - stateSubregionCode: AZ1 stateSubregionName: AZ_NORTH addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: SO subRegionName: South states: - stateCode: DE stateName: Delaware stateSubregions: - stateSubregionCode: DE stateSubregionName: DE - stateCode: MS stateName: Mississippi stateSubregions: - stateSubregionCode: MS2 stateSubregionName: MS_SOUTH - stateCode: OK stateName: Oklahoma stateSubregions: - stateSubregionCode: OK1 stateSubregionName: OK_NORTH_EAST - stateCode: GA stateName: Georgia stateSubregions: - stateSubregionCode: GA2 stateSubregionName: GA_CENTRAL - stateCode: NC stateName: North Carolina stateSubregions: - stateSubregionCode: NC2 stateSubregionName: NC_NORTH - stateSubregionCode: NC1 stateSubregionName: NC_EAST - stateCode: LA stateName: Louisiana stateSubregions: - stateSubregionCode: LA2 stateSubregionName: LA_SOUTH - stateSubregionCode: LA1 stateSubregionName: LA_NORTH - stateCode: SC stateName: South Carolina stateSubregions: - stateSubregionCode: SC1 stateSubregionName: SC_CENTRAL - stateSubregionCode: SC3 stateSubregionName: SC_SOUTH - stateCode: AR stateName: Arkansas stateSubregions: - stateSubregionCode: AR2 stateSubregionName: AR_WEST - stateCode: AL stateName: Alabama stateSubregions: - stateSubregionCode: AL1 stateSubregionName: AL_NORTH - stateCode: VA stateName: Virginia stateSubregions: - stateSubregionCode: VA2 stateSubregionName: VA_NORTH - stateSubregionCode: VA1 stateSubregionName: VA_CENTRAL - stateSubregionCode: VA4 stateSubregionName: VA_SOUTH_WEST - stateCode: FL stateName: Florida stateSubregions: - stateSubregionCode: FL1 stateSubregionName: FL_CENTRAL_EAST - stateSubregionCode: FL3 stateSubregionName: FL_MIAMI - stateCode: TX stateName: Texas stateSubregions: - stateSubregionCode: TX3 stateSubregionName: TX_CENTRAL_WEST - stateSubregionCode: TX5 stateSubregionName: TX_HOUSTON - stateSubregionCode: TX7 stateSubregionName: TX_NORTH_WEST - stateSubregionCode: TX9 stateSubregionName: TX_SOUTH_EAST - stateSubregionCode: TX8 stateSubregionName: TX_SOUTH - stateCode: TN stateName: Tennessee stateSubregions: - stateSubregionCode: TN1 stateSubregionName: TN_CENTRAL - stateSubregionCode: TN3 stateSubregionName: TN_WEST - stateSubregionCode: TN2 stateSubregionName: TN_EAST - stateCode: MD stateName: Maryland stateSubregions: - stateSubregionCode: MD1 stateSubregionName: MD_CENTRAL - stateCode: DC stateName: District of Columbia stateSubregions: - stateSubregionCode: DC stateSubregionName: DC - subRegionCode: WE subRegionName: West states: - stateCode: CO stateName: Colorado stateSubregions: - stateSubregionCode: CO1 stateSubregionName: CO_CENTRAL - stateSubregionCode: CO2 stateSubregionName: CO_REST_ALL - stateCode: WA stateName: Washington stateSubregions: - stateSubregionCode: WA stateSubregionName: WA - stateCode: NM stateName: New Mexico stateSubregions: - stateSubregionCode: NM2 stateSubregionName: NM_REST_ALL - stateSubregionCode: NM1 stateSubregionName: NM_CENTRAL - stateCode: WY stateName: Wyoming stateSubregions: - stateSubregionCode: WY stateSubregionName: WY - stateCode: MT stateName: Montana stateSubregions: - stateSubregionCode: MT stateSubregionName: MT - stateCode: OR stateName: Oregon stateSubregions: - stateSubregionCode: OR1 stateSubregionName: OR_CENTRAL - subRegionCode: MW subRegionName: Midwest states: - stateCode: MO stateName: Missouri stateSubregions: - stateSubregionCode: MO3 stateSubregionName: MO_WEST - stateSubregionCode: MO2 stateSubregionName: MO_SOUTH - stateCode: IA stateName: Iowa stateSubregions: - stateSubregionCode: IA1 stateSubregionName: IA_CENTRAL - stateCode: IN stateName: Indiana stateSubregions: - stateSubregionCode: IN2 stateSubregionName: IN_NORTH - stateSubregionCode: IN3 stateSubregionName: IN_SOUTH - stateCode: IL stateName: Illinois stateSubregions: - stateSubregionCode: IL2 stateSubregionName: IL_NORTH_EAST - stateSubregionCode: IL1 stateSubregionName: IL_CHICAGO - stateCode: MN stateName: Minnesota stateSubregions: - stateSubregionCode: MN1 stateSubregionName: MN_CENTRAL_EAST - stateCode: OH stateName: Ohio stateSubregions: - stateSubregionCode: OH2 stateSubregionName: OH_NORTH - stateSubregionCode: OH4 stateSubregionName: OH_WEST - subRegionCode: NE subRegionName: Northeast states: - stateCode: PA stateName: Pennsylvania stateSubregions: - stateSubregionCode: PA1 stateSubregionName: PA_CENTRAL - stateSubregionCode: PA4 stateSubregionName: PA_SOUTH - stateSubregionCode: PA5 stateSubregionName: PA_WEST addressTypes: - STREET transitTime: 4 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: MW subRegionName: Midwest states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST - stateCode: KS stateName: Kansas stateSubregions: - stateSubregionCode: KS1 stateSubregionName: KS_EAST - stateSubregionCode: KS2 stateSubregionName: KS_WEST - stateCode: MO stateName: Missouri stateSubregions: - stateSubregionCode: MO1 stateSubregionName: MO_EAST - stateCode: MI stateName: Michigan stateSubregions: - stateSubregionCode: MI1 stateSubregionName: MI_CENTRAL - stateSubregionCode: MI3 stateSubregionName: MI_SOUTH_EAST - stateSubregionCode: MI2 stateSubregionName: MI_NORTH - stateCode: IA stateName: Iowa stateSubregions: - stateSubregionCode: IA2 stateSubregionName: IA_REST - stateCode: WI stateName: Wisconsin stateSubregions: - stateSubregionCode: WI1 stateSubregionName: WI_EAST - stateSubregionCode: WI2 stateSubregionName: WI_WEST - stateCode: IN stateName: Indiana stateSubregions: - stateSubregionCode: IN1 stateSubregionName: IN_CENTRAL_AND_EAST - stateSubregionCode: IN4 stateSubregionName: IN_WEST - stateCode: IL stateName: Illinois stateSubregions: - stateSubregionCode: IL4 stateSubregionName: IL_SOUTHEAST - stateSubregionCode: IL3 stateSubregionName: IL_NORTH_WEST - stateSubregionCode: IL5 stateSubregionName: IL_SOUTHWEST - stateCode: MN stateName: Minnesota stateSubregions: - stateSubregionCode: MN2 stateSubregionName: MN_REST_ALL - stateCode: ND stateName: North Dakota stateSubregions: - stateSubregionCode: ND stateSubregionName: ND - stateCode: NE stateName: Nebraska stateSubregions: - stateSubregionCode: NE stateSubregionName: NE - stateCode: OH stateName: Ohio stateSubregions: - stateSubregionCode: OH1 stateSubregionName: OH_CENTRAL - stateSubregionCode: OH3 stateSubregionName: OH_SOUTH_EAST - subRegionCode: SO subRegionName: South states: - stateCode: KY stateName: Kentucky stateSubregions: - stateSubregionCode: KY1 stateSubregionName: KY_EAST - stateSubregionCode: KY2 stateSubregionName: KY_WEST - stateCode: GA stateName: Georgia stateSubregions: - stateSubregionCode: GA1 stateSubregionName: GA_ATLANTA - stateSubregionCode: GA3 stateSubregionName: GA_NORTH_EAST - stateSubregionCode: GA5 stateSubregionName: GA_SOUTH - stateSubregionCode: GA4 stateSubregionName: GA_NORTH_WEST - stateCode: NC stateName: North Carolina stateSubregions: - stateSubregionCode: NC4 stateSubregionName: NC_WEST - stateSubregionCode: NC3 stateSubregionName: NC_SOUTH - stateCode: SC stateName: South Carolina stateSubregions: - stateSubregionCode: SC2 stateSubregionName: SC_NORTH - stateCode: AL stateName: Alabama stateSubregions: - stateSubregionCode: AL2 stateSubregionName: AL_SOUTH - stateCode: VA stateName: Virginia stateSubregions: - stateSubregionCode: VA3 stateSubregionName: VA_SOUTH_EAST - stateCode: FL stateName: Florida stateSubregions: - stateSubregionCode: FL2 stateSubregionName: FL_CENTRAL_WEST - stateSubregionCode: FL5 stateSubregionName: FL_SOUTH_EAST - stateSubregionCode: FL4 stateSubregionName: FL_NORTH - stateSubregionCode: FL6 stateSubregionName: FL_SOUTH_WEST - stateCode: WV stateName: West Virginia stateSubregions: - stateSubregionCode: WV2 stateSubregionName: WV_WEST - stateSubregionCode: WV1 stateSubregionName: WV_EAST - stateCode: MD stateName: Maryland stateSubregions: - stateSubregionCode: MD2 stateSubregionName: MD_REST_ALL - subRegionCode: NE subRegionName: Northeast states: - stateCode: NY stateName: New York stateSubregions: - stateSubregionCode: NY2 stateSubregionName: NY_CENTRAL - stateSubregionCode: NY1 stateSubregionName: NY_BROOKLYN - stateSubregionCode: NY5 stateSubregionName: NY_SOUTH - stateCode: PA stateName: Pennsylvania stateSubregions: - stateSubregionCode: PA2 stateSubregionName: PA_CENTRAL_NORTH - stateSubregionCode: PA3 stateSubregionName: PA_NORTH_EAST addressTypes: - STREET transitTime: 5 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - shipMethod: TWO_DAY status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: WE subRegionName: West states: - stateCode: CA stateName: California stateSubregions: - stateSubregionCode: CA12 stateSubregionName: CA_SAN_DIEGO - stateSubregionCode: CA11 stateSubregionName: CA_SAN_BERNARDINO - stateSubregionCode: CA10 stateSubregionName: "CA_RIVERSIDE_IMPERIAL\t" - stateSubregionCode: CA3 stateSubregionName: CA_CENTRAL_SOUTH - stateSubregionCode: CA2 stateSubregionName: CA_CENTRAL_NORTH - stateSubregionCode: CA5 stateSubregionName: CA_LONG_BEACH - stateSubregionCode: CA7 stateSubregionName: CA_LOS_ANGELES_VENTURA_COUNTY - stateSubregionCode: CA6 stateSubregionName: CA_LOS_ANGELES - stateSubregionCode: CA9 stateSubregionName: CA_ONTARIO - stateSubregionCode: CA15 stateSubregionName: CA_SANTA_ANA - stateSubregionCode: CA14 stateSubregionName: CA_SAN_FRANCISCO - stateSubregionCode: CA13 stateSubregionName: CA_SAN_DIEGO_COUNTY - stateCode: NV stateName: Nevada stateSubregions: - stateSubregionCode: NV1 stateSubregionName: NV_LAS_VEGAS - stateSubregionCode: NV3 stateSubregionName: NV_SOUTH - stateCode: AZ stateName: Arizona stateSubregions: - stateSubregionCode: AZ2 stateSubregionName: AZ_PHOENIX - stateSubregionCode: AZ3 stateSubregionName: AZ_SOUTH addressTypes: - STREET transitTime: 2 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD FREIGHT_TEMPLATE: value: name: Freight Template 1 type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: FREIGHT status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 7 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 1 currency: USD chargePerWeight: amount: 2 currency: USD OneDay: value: name: Paid One Day S6 type: CUSTOM rateModelType: PER_SHIPMENT_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - regions: - regionCode: H regionName: AK and HI addressTypes: - STREET transitTime: 6 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: NE states: - stateCode: PA stateSubregions: - stateSubregionCode: PA1 - stateSubregionCode: PA4 - stateSubregionCode: PA3 - stateSubregionCode: PA5 - stateSubregionCode: PA2 - stateCode: CT stateSubregions: - stateSubregionCode: CT2 - stateSubregionCode: CT1 - stateCode: MA stateSubregions: - stateSubregionCode: MA2 - stateSubregionCode: MA1 - stateCode: RI stateSubregions: - stateSubregionCode: RI - stateCode: ME stateSubregions: - stateSubregionCode: ME1 - stateSubregionCode: ME2 - stateCode: NH stateSubregions: - stateSubregionCode: NH - stateCode: NY stateSubregions: - stateSubregionCode: NY1 - stateSubregionCode: NY3 - stateSubregionCode: NY5 - stateSubregionCode: NY4 - stateSubregionCode: NY2 - stateCode: NJ stateSubregions: - stateSubregionCode: NJ3 - stateSubregionCode: NJ2 - stateSubregionCode: NJ1 - stateSubregionCode: NJ4 - stateCode: VT stateSubregions: - stateSubregionCode: VT - subRegionCode: MW states: - stateCode: SD stateSubregions: - stateSubregionCode: SD2 - stateSubregionCode: SD1 - stateCode: MN stateSubregions: - stateSubregionCode: MN1 - stateSubregionCode: MN2 - stateCode: MO stateSubregions: - stateSubregionCode: MO3 - stateSubregionCode: MO2 - stateSubregionCode: MO1 - stateCode: WI stateSubregions: - stateSubregionCode: WI1 - stateSubregionCode: WI2 - stateCode: IL stateSubregions: - stateSubregionCode: IL4 - stateSubregionCode: IL2 - stateSubregionCode: IL3 - stateSubregionCode: IL5 - stateSubregionCode: IL1 - stateCode: IN stateSubregions: - stateSubregionCode: IN2 - stateSubregionCode: IN3 - stateSubregionCode: IN1 - stateSubregionCode: IN4 - stateCode: ND stateSubregions: - stateSubregionCode: ND - stateCode: NE stateSubregions: - stateSubregionCode: NE - stateCode: IA stateSubregions: - stateSubregionCode: IA2 - stateSubregionCode: IA1 - stateCode: KS stateSubregions: - stateSubregionCode: KS2 - stateSubregionCode: KS1 - stateCode: OH stateSubregions: - stateSubregionCode: OH2 - stateSubregionCode: OH4 - stateSubregionCode: OH3 - stateSubregionCode: OH1 - stateCode: MI stateSubregions: - stateSubregionCode: MI3 - stateSubregionCode: MI1 - stateSubregionCode: MI2 - subRegionCode: SO states: - stateCode: DE stateSubregions: - stateSubregionCode: DE - stateCode: TX stateSubregions: - stateSubregionCode: TX1 - stateSubregionCode: TX5 - stateSubregionCode: TX7 - stateSubregionCode: TX3 - stateSubregionCode: TX8 - stateSubregionCode: TX4 - stateSubregionCode: TX2 - stateSubregionCode: TX9 - stateSubregionCode: TX6 - stateSubregionCode: TX10 - stateCode: MS stateSubregions: - stateSubregionCode: MS1 - stateSubregionCode: MS2 - stateCode: FL stateSubregions: - stateSubregionCode: FL2 - stateSubregionCode: FL1 - stateSubregionCode: FL4 - stateSubregionCode: FL6 - stateSubregionCode: FL5 - stateSubregionCode: FL3 - stateCode: AL stateSubregions: - stateSubregionCode: AL1 - stateSubregionCode: AL2 - stateCode: VA stateSubregions: - stateSubregionCode: VA3 - stateSubregionCode: VA2 - stateSubregionCode: VA1 - stateSubregionCode: VA4 - stateCode: KY stateSubregions: - stateSubregionCode: KY2 - stateSubregionCode: KY1 - stateCode: SC stateSubregions: - stateSubregionCode: SC2 - stateSubregionCode: SC3 - stateSubregionCode: SC1 - stateCode: AR stateSubregions: - stateSubregionCode: AR1 - stateSubregionCode: AR2 - stateCode: LA stateSubregions: - stateSubregionCode: LA1 - stateSubregionCode: LA2 - stateCode: NC stateSubregions: - stateSubregionCode: NC2 - stateSubregionCode: NC3 - stateSubregionCode: NC4 - stateSubregionCode: NC1 - stateCode: MD stateSubregions: - stateSubregionCode: MD1 - stateSubregionCode: MD2 - stateCode: GA stateSubregions: - stateSubregionCode: GA4 - stateSubregionCode: GA5 - stateSubregionCode: GA1 - stateSubregionCode: GA2 - stateSubregionCode: GA3 - stateCode: TN stateSubregions: - stateSubregionCode: TN2 - stateSubregionCode: TN1 - stateSubregionCode: TN3 - stateCode: OK stateSubregions: - stateSubregionCode: OK1 - stateSubregionCode: OK2 - stateCode: WV stateSubregions: - stateSubregionCode: WV2 - stateSubregionCode: WV1 - stateCode: DC stateSubregions: - stateSubregionCode: DC - subRegionCode: WE states: - stateCode: WY stateSubregions: - stateSubregionCode: WY - stateCode: OR stateSubregions: - stateSubregionCode: OR1 - stateSubregionCode: OR2 - stateCode: MT stateSubregions: - stateSubregionCode: MT - stateCode: NV stateSubregions: - stateSubregionCode: NV1 - stateSubregionCode: NV3 - stateSubregionCode: NV2 - stateCode: AZ stateSubregions: - stateSubregionCode: AZ1 - stateSubregionCode: AZ3 - stateSubregionCode: AZ2 - stateCode: WA stateSubregions: - stateSubregionCode: WA - stateCode: ID stateSubregions: - stateSubregionCode: ID1 - stateSubregionCode: ID2 - stateCode: CO stateSubregions: - stateSubregionCode: CO1 - stateSubregionCode: CO2 - stateCode: CA stateSubregions: - stateSubregionCode: CA14 - stateSubregionCode: CA8 - stateSubregionCode: CA15 - stateSubregionCode: CA11 - stateSubregionCode: CA7 - stateSubregionCode: CA13 - stateSubregionCode: CA6 - stateSubregionCode: CA12 - stateSubregionCode: CA2 - stateSubregionCode: CA9 - stateSubregionCode: CA1 - stateSubregionCode: CA3 - stateSubregionCode: CA10 - stateSubregionCode: CA4 - stateSubregionCode: CA5 - stateCode: NM stateSubregions: - stateSubregionCode: NM2 - stateSubregionCode: NM1 - stateCode: UT stateSubregions: - stateSubregionCode: UT2 - stateSubregionCode: UT1 addressTypes: - STREET transitTime: 5 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 0 currency: USD chargePerWeight: amount: 0 currency: USD - shipMethod: ONE_DAY status: INACTIVE configurations: - regions: - regionName: 48 State regionCode: C subRegions: - subRegionCode: SO states: - stateCode: DE stateSubregions: - stateSubregionCode: DE - stateCode: TX stateSubregions: - stateSubregionCode: TX1 - stateSubregionCode: TX5 - stateSubregionCode: TX7 - stateSubregionCode: TX3 - stateSubregionCode: TX8 - stateSubregionCode: TX4 - stateSubregionCode: TX2 - stateSubregionCode: TX9 - stateSubregionCode: TX6 - stateSubregionCode: TX10 - stateCode: MS stateSubregions: - stateSubregionCode: MS1 - stateSubregionCode: MS2 - stateCode: FL stateSubregions: - stateSubregionCode: FL2 - stateSubregionCode: FL1 - stateSubregionCode: FL4 - stateSubregionCode: FL6 - stateSubregionCode: FL5 - stateSubregionCode: FL3 - stateCode: AL stateSubregions: - stateSubregionCode: AL1 - stateSubregionCode: AL2 - stateCode: VA stateSubregions: - stateSubregionCode: VA3 - stateSubregionCode: VA2 - stateSubregionCode: VA1 - stateSubregionCode: VA4 - stateCode: KY stateSubregions: - stateSubregionCode: KY2 - stateSubregionCode: KY1 - stateCode: SC stateSubregions: - stateSubregionCode: SC2 - stateSubregionCode: SC3 - stateSubregionCode: SC1 - stateCode: AR stateSubregions: - stateSubregionCode: AR1 - stateSubregionCode: AR2 - stateCode: LA stateSubregions: - stateSubregionCode: LA1 - stateSubregionCode: LA2 - stateCode: NC stateSubregions: - stateSubregionCode: NC2 - stateSubregionCode: NC3 - stateSubregionCode: NC4 - stateSubregionCode: NC1 - stateCode: MD stateSubregions: - stateSubregionCode: MD1 - stateSubregionCode: MD2 - stateCode: GA stateSubregions: - stateSubregionCode: GA4 - stateSubregionCode: GA5 - stateSubregionCode: GA1 - stateSubregionCode: GA2 - stateSubregionCode: GA3 - stateCode: TN stateSubregions: - stateSubregionCode: TN2 - stateSubregionCode: TN1 - stateSubregionCode: TN3 - stateCode: OK stateSubregions: - stateSubregionCode: OK1 - stateSubregionCode: OK2 - stateCode: WV stateSubregions: - stateSubregionCode: WV2 - stateSubregionCode: WV1 - stateCode: DC stateSubregions: - stateSubregionCode: DC addressTypes: - STREET transitTime: 1 perShippingCharge: unitOfMeasure: LB shippingAndHandling: amount: 101 currency: USD chargePerItem: amount: 101 currency: USD required: true responses: '200': description: Successful Operation content: application/json: schema: required: - name - rateModelType - shippingMethods - status - type type: object properties: id: type: string description: Shipping Template ID name: pattern: "^[A-Za-z0-9\\s]+$" type: string description: Shipping Template Name type: type: string description: Shipping Template Type, should be CUSTOM or 3PL Specific enum: - DEFAULT - CUSTOM - DELIVERR rateModelType: type: string description: 'This is the shipping model type. TIERED_PRICING: This model means that you charge shipping based on the price of the item PER_SHIPMENT_PRICING: This model means that you charge shipping based on the weight of your items (per pound), or you charge shipping based on the number of items purchased in an order' enum: - TIERED_PRICING - PER_SHIPMENT_PRICING status: type: string description: Shipping Template Status, Can be ACTIVE or INACTIVE status enum: - ACTIVE - INACTIVE shippingMethods: type: array description: Array of different ship methods of a Shipping Template items: required: - configurations - shipMethod - status type: object properties: shipMethod: type: string description: |- | Attribute | Description | Data Type | | ---- | ----------------- | ------- | | VALUE | All Marketplace Sellers must offer Value shipping to Walmart.com customers for items that can't ship within expected transit times for standard shipping. | string | | STANDARD | You are required to offer standard shipping to Walmart.com customers. | string | | TWO_DAY | If approved for this option, you'll provide free 2-day shipping to customers and your items will be enabled with the TwoDay delivery tag. | string | | ONE_DAY | If approved for this option, you can provide free and paid 1-day shipping to customers and your items will be enabled with OneDay delivery. | string | | FREIGHT | Heavy items which takes 6,7,8,9,10 days. | string | enum: - VALUE - STANDARD - THREE_DAY - TWO_DAY - ONE_DAY - FREIGHT status: type: string description: Shipping Method Status, Can be ACTIVE or INACTIVE status enum: - ACTIVE - INACTIVE configurations: type: array description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge items: required: - addressTypes - regions - transitTime type: object properties: regions: type: array description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc items: required: - regionCode type: object properties: regionCode: type: string regionName: type: string subRegions: type: array items: required: - subRegionCode type: object properties: subRegionCode: type: string subRegionName: type: string states: type: array items: required: - stateCode type: object properties: stateCode: type: string stateName: type: string stateSubregions: type: array items: required: - stateSubregionCode type: object properties: stateSubregionCode: type: string stateSubregionName: type: string description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc addressTypes: type: array description: Supported address types like PO_BOX STREET MILITARY items: type: string description: Supported address types like PO_BOX STREET MILITARY enum: - PO_BOX - MILITARY - STREET transitTime: type: integer description: Time in transit format: int32 perShippingCharge: required: - unitOfMeasure type: object properties: unitOfMeasure: type: string description: Unit of Measure eg. LB shippingAndHandling: required: - amount - currency type: object properties: amount: type: number description: 'The numerical amount for that charge. Example: 9.99' currency: type: string description: 'The type of currency for the charge. Example: USD for US Dollars' description: Shipping and Handling Charge chargePerWeight: required: - amount - currency type: object properties: amount: type: number description: Charge Per weight, value USD currency: type: string description: Currency, eg. USD description: Per Item Charge chargePerItem: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Per Weight Charge description: Charge per shipping tieredShippingCharges: type: array description: Tiered Shipping Charges items: required: - maxLimit - minLimit type: object properties: minLimit: type: number description: Minimum Limit maxLimit: type: number description: Maximum Limit shipCharge: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Details of Shipping Charge description: Tiered Shipping Charges description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge description: Array of different ship methods of a Shipping Template createdBy: type: string modifiedBy: type: string createdDate: type: number modifiedDate: type: number example: id: '91233632243720193' name: Next Day servc type: CUSTOM rateModelType: TIERED_PRICING status: ACTIVE shippingMethods: - shipMethod: VALUE status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - regions: - regionCode: H regionName: AK and HI addressTypes: - STREET transitTime: 6 tieredShippingCharges: - minLimit: 0 maxLimit: -1 shipCharge: amount: 0 currency: USD - shipMethod: STANDARD status: ACTIVE configurations: - regions: - regionCode: C regionName: 48 State subRegions: - subRegionCode: MW subRegionName: MW states: - stateCode: SD stateName: South Dakota stateSubregions: - stateSubregionCode: SD2 stateSubregionName: SD_WEST - stateSubregionCode: SD1 stateSubregionName: SD_EAST addressTypes: - STREET transitTime: 3 tieredShippingCharges: - minLimit: 10.06 maxLimit: -1 shipCharge: amount: 2 currency: USD - minLimit: 0 maxLimit: 10.05 shipCharge: amount: 1 currency: USD "/v3/settings/shipping/3plshipnodes": post: tags: - Settings summary: Walmart Third Party Fulfillment Center Association description: This API associate a third party fulfillment center with Seller. operationId: associate3PFulfillmentCenter parameters: - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name requestBody: description: Request fields content: application/json: schema: type: object properties: shipNodeHeader: type: object properties: version: type: string shipNode: type: array items: type: object properties: shipNode: type: string description: The fulfillment center or ship node which uniquely identifies each facility and is retrieved from the Get all third party fulfillment providers API. status: type: string description: 'Status of fulfillment center. Allowed values: ACTIVE, INACTIVE.' example: shipNodeHeader: version: '1.2' shipNode: - shipNode: '99351656957153281' status: ACTIVE required: true responses: '200': description: Successful Operation content: application/json: schema: type: array items: type: object properties: shipNode: type: string description: The fulfillment center or ship node which uniquely identifies each facility and is retrieved from the Get all third party fulfillment providers API. status: type: string description: 'Status of fulfillment center. Allowed values: ACTIVE, INACTIVE.' "/v3/settings/shippingprofile": get: tags: - Settings summary: Walmart Get Shipping Configurations description:

This API can be used to retrieve shipping configurations like Lag Time configured for seller.It returns lag time for exception categories that were configured for the Seller through Request Lag Time Exceptions process.

operationId: getShippingConfigurations parameters: - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name responses: '200': description: Successful Operation content: application/json: schema: type: object properties: partner: type: object properties: partnerId: type: string description: The seller ID partnerName: type: string description: The seller's legal name partnerDisplayName: type: string description: The seller name shown on walmart.com partnerStoreId: type: string description: Partner/Seller ID for Walmart store URL businessRegNumber: type: string description: " A registered distinct identifier such as US Tax ID / Foreign Tax ID" countryOfIncorporation: type: string description: The country from where seller conducts their business | ISO 3166 Country code description: Details of partner configurations: type: array description: List of seller configurations like Lag Time items: type: object description: List of seller configurations like Lag Time anyOf: - type: object properties: configurationName: type: string description: Name of the configuration enum: - LAG_TIME configuration: type: object properties: categories: type: array description: List of item setup category level lag time exceptions configured for seller items: type: object properties: name: type: string description: Name of the item setup category which was used to request lag time exception fulfillmentLagTime: type: integer description: Maximum lag time configured for the item setup category format: int32 description: List of item setup category level lag time exceptions configured for seller example: partner: partnerId: '100009' partnerName: The seller's legal name partnerDisplayName: The seller name shown on walmart.com partnerStoreId: Partner/Seller ID for Walmart store URL configurations: - configurationName: LAG_TIME configuration: categories: - name: Art & Craft fulfillmentLagTime: 2 - name: Garden & Patio fulfillmentLagTime: 3 "/v3/settings/shipping/templates/activationStatus": get: tags: - Settings summary: Walmart Get Shipping Template Activation Status description: This api can be used to get the Activation Status of the Shipping Templates, which can be set through Walmart Seller Center. This activation status is not the same as the "status:ACTIVE/INACTIVE" of each shipping template. operationId: getShippingTemplateActivationStatus parameters: - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name responses: '200': description: Successful Operation content: application/json: schema: type: object properties: activationStatus: type: string description: Shipping Template Activation Status, possible values can be NOT_ACTIVATED or ACTIVATED createdDate: type: number description: Activation Date modifiedDate: type: number description: Activation Status Last Modified Date example: activationStatus: ACTIVATED modifiedDate: 1599490896997 createdDate: 1598546424640 "/v3/settings/shipping/shipnodes/coverage": get: tags: - Settings summary: Walmart Get Coverage for Fulfillment Centers description: This API provides the list of all fullfillment centers for the seller and their coverage areas defined by Walmart based on the address operationId: getCoverageForFulfillmentCenters parameters: - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name responses: '200': description: Successful Operation content: application/json: schema: type: array items: type: object properties: shipNode: type: string description: The fulfillment center or ship node Id which uniquely identifies each facility and is autogenerated during the creation of fulfillment center. Every time a facility is added, a new ship node id is generated. shipNodeName: type: string description: Name of the fulfillment center. coverageArea: type: array description: Two day shipping regions defined by Walmart for sellers. items: type: string description: Two day shipping regions defined by Walmart for sellers. example: - shipNode: '81087939095695361' shipNodeName: Seller test-distributor1 coverageArea: [] - shipNode: '79112975786049537' shipNodeName: Seller test-distributor2 coverageArea: - AR1 - AR2 - CA1 - AR3 - PA4 - CA3 - CA2 - shipNode: '79114105970622465' shipNodeName: Seller test-distributor3 coverageArea: - PA2 - PA1 - NY1 - shipNode: '80359164518989825' shipNodeName: Seller test-distributor4 coverageArea: [] "/v3/settings/shipping/carriers": get: tags: - Settings summary: Walmart Get Carrier Methods description: Gets the available carrier methods operationId: getCarrierMethods parameters: - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name responses: '200': description: Successful Operation content: application/json: schema: type: array items: type: object properties: carrierMethodId: type: string description: Carrier Id carrierMethodName: type: string description: Carrier Name carrierMethodType: type: string description: Shipping method. Allowed Value is GROUND. carrierMethodDescription: type: string description: A description for the method carrier. example: - carrierMethodId: '1000014' carrierMethodName: USPS carrierMethodType: GROUND carrierMethodDescription: USPS for Marketplace - carrierMethodId: '1000013' carrierMethodName: UPS carrierMethodType: GROUND carrierMethodDescription: UPS for Marketplace - carrierMethodId: '1000012' carrierMethodName: FEDEX carrierMethodType: GROUND carrierMethodDescription: Fedex for Marketplace "/v3/settings/shipping/3plproviders": get: tags: - Settings summary: Walmart Get All Third Party Fulfillment Providers description: Get a list of all third party fulfillment providers. operationId: get3PFulfillmentProviders parameters: - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name responses: '200': description: Successful Operation content: application/json: schema: type: array items: type: object properties: shipNode: type: string description: The fulfillment center or ship node Id which uniquely identifies each facility and is autogenerated during the creation of fulfillment center. Every time a facility is added, a new ship node id is generated. shipNodeName: type: string description: Name of the fulfillment center. example: - shipNode: '423734745612582913' shipNodeName: MP_Shipbob - shipNode: '99351656957153281' shipNodeName: MP_Deliverr "/v3/settings/partnerprofile": get: tags: - Settings summary: Walmart Get Partner Configurations description:

This API can be used to retrieve partner configurations like Seller Account & feed throttling values configured for seller.

The Feed Configuration block in the response shows the seller specific throttling configuration based on the tier of seller. If a new Seller is not assigned any tier, the block will be empty.

Please note that the default throttling configuration across Walmart and the API Throttling Response Headers can be found here

operationId: getPartnerConfigurations parameters: - in: header name: WM_SEC.ACCESS_TOKEN description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... - in: header name: WM_CONSUMER.CHANNEL.TYPE description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string - in: header name: WM_QOS.CORRELATION_ID description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 - in: header name: WM_SVC.NAME description: Walmart Service Name required: true schema: type: string example: Walmart Service Name responses: '200': description: Successful Operation content: application/json: schema: type: object properties: partner: type: object properties: partnerId: type: string description: The seller ID partnerName: type: string description: The seller's legal name partnerDisplayName: type: string description: The seller name shown on walmart.com partnerStoreId: type: string description: Partner/Seller ID for Walmart store URL businessRegNumber: type: string description: " A registered distinct identifier such as US Tax ID / Foreign Tax ID" countryOfIncorporation: type: string description: The country from where seller conducts their business | ISO 3166 Country code description: Details of partner configurations: type: array description: List of seller configurations like Seller Account & feed throttling values items: type: object description: List of seller configurations like Seller Account & feed throttling values anyOf: - type: object properties: configurationName: type: string description: Name of the configuration. Allowed value is ACCOUNT configuration: type: object properties: status: type: string description: Status of Seller Account enum: - ACTIVE - ONBOARDING_ACTIVE - ONBOARDING_INACTIVE - SUSPENDED - TNS_DECLINED - TERMINATED - type: object properties: configurationName: type: string description: Name of the configuration. Allowed value is FEED configuration: type: object properties: values: type: array description: List of feed throttling configurations items: type: object properties: feedType: type: string description: The feed Type enum: - item - RETIRE_ITEM - MP_ITEM - MP_WFS_ITEM - MP_MAINTENANCE - SKU_TEMPLATE_MAP - SHIPPING_OVERRIDES - price - CPT_SELLER_ELIGIBILITY - promo - RETURNS_OVERRIDES - inventory - lagtime throttleConfigurations: type: array description: Details of throttling configurations items: type: object properties: type: type: string description: Type of the throttling configuration. Example 'SELLER' means throttling configurations at Seller level only. enum: - SELLER rate: type: object properties: count: type: integer description: Number of API calls that can be made in every replenish time window format: int64 replenishTimeWindow: type: object properties: value: type: integer description: The number representing size of time window format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''SECOND''' enum: - SECOND description: A time period set for throttling of number of API calls description: API call Rate fileSize: type: object properties: value: type: integer description: The number representing file size format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''BYTES''' enum: - BYTES description: The maximum allowed size of the feed file description: Details of throttling configurations description: List of feed throttling configurations example: partner: partnerId: '100009' partnerName: The seller's legal name partnerDisplayName: The seller name shown on walmart.com partnerStoreId: 'Partner/Seller ID for Walmart store URL ' businessRegNumber: A registered distinct identifier such as US Tax ID / Foreign Tax ID countryOfIncorporation: The country from where seller conducts their business | ISO 3166 Country code configurations: - configurationName: ACCOUNT configuration: status: ACTIVE - configurationName: FEED configuration: values: - feedType: inventory throttleConfigurations: - type: SELLER rate: count: 6 replenishTimeWindow: value: '3600' unitOfMeasurement: SECOND fileSize: value: 26214400 unitOfMeasurement: BYTES - feedType: MP_ITEM throttleConfigurations: - type: SELLER rate: count: 6 replenishTimeWindow: value: '3600' unitOfMeasurement: SECOND fileSize: value: 26214400 unitOfMeasurement: BYTES components: schemas: ChargePerItem: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Per Weight Charge ChargePerWeight: required: - amount - currency type: object properties: amount: type: number description: Charge Per weight, value USD currency: type: string description: Currency, eg. USD description: Per Item Charge Configuration: required: - addressTypes - regions - transitTime type: object properties: regions: type: array description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc items: required: - regionCode type: object properties: regionCode: type: string regionName: type: string subRegions: type: array items: required: - subRegionCode type: object properties: subRegionCode: type: string subRegionName: type: string states: type: array items: required: - stateCode type: object properties: stateCode: type: string stateName: type: string stateSubregions: type: array items: required: - stateSubregionCode type: object properties: stateSubregionCode: type: string stateSubregionName: type: string description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc addressTypes: type: array description: Supported address types like PO_BOX STREET MILITARY items: type: string description: Supported address types like PO_BOX STREET MILITARY enum: - PO_BOX - MILITARY - STREET transitTime: type: integer description: Time in transit format: int32 perShippingCharge: required: - unitOfMeasure type: object properties: unitOfMeasure: type: string description: Unit of Measure eg. LB shippingAndHandling: required: - amount - currency type: object properties: amount: type: number description: 'The numerical amount for that charge. Example: 9.99' currency: type: string description: 'The type of currency for the charge. Example: USD for US Dollars' description: Shipping and Handling Charge chargePerWeight: required: - amount - currency type: object properties: amount: type: number description: Charge Per weight, value USD currency: type: string description: Currency, eg. USD description: Per Item Charge chargePerItem: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Per Weight Charge description: Charge per shipping tieredShippingCharges: type: array description: Tiered Shipping Charges items: required: - maxLimit - minLimit type: object properties: minLimit: type: number description: Minimum Limit maxLimit: type: number description: Maximum Limit shipCharge: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Details of Shipping Charge description: Tiered Shipping Charges description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge PerShippingCharge: required: - unitOfMeasure type: object properties: unitOfMeasure: type: string description: Unit of Measure eg. LB shippingAndHandling: required: - amount - currency type: object properties: amount: type: number description: 'The numerical amount for that charge. Example: 9.99' currency: type: string description: 'The type of currency for the charge. Example: USD for US Dollars' description: Shipping and Handling Charge chargePerWeight: required: - amount - currency type: object properties: amount: type: number description: Charge Per weight, value USD currency: type: string description: Currency, eg. USD description: Per Item Charge chargePerItem: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Per Weight Charge description: Charge per shipping Region: required: - regionCode type: object properties: regionCode: type: string regionName: type: string subRegions: type: array items: required: - subRegionCode type: object properties: subRegionCode: type: string subRegionName: type: string states: type: array items: required: - stateCode type: object properties: stateCode: type: string stateName: type: string stateSubregions: type: array items: required: - stateSubregionCode type: object properties: stateSubregionCode: type: string stateSubregionName: type: string description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc ShipCharge: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Details of Shipping Charge ShippingAndHandling: required: - amount - currency type: object properties: amount: type: number description: 'The numerical amount for that charge. Example: 9.99' currency: type: string description: 'The type of currency for the charge. Example: USD for US Dollars' description: Shipping and Handling Charge ShippingMethod: required: - configurations - shipMethod - status type: object properties: shipMethod: type: string description: |- | Attribute | Description | Data Type | | ---- | ----------------- | ------- | | VALUE | All Marketplace Sellers must offer Value shipping to Walmart.com customers for items that can't ship within expected transit times for standard shipping. | string | | STANDARD | You are required to offer standard shipping to Walmart.com customers. | string | | TWO_DAY | If approved for this option, you'll provide free 2-day shipping to customers and your items will be enabled with the TwoDay delivery tag. | string | | ONE_DAY | If approved for this option, you can provide free and paid 1-day shipping to customers and your items will be enabled with OneDay delivery. | string | | FREIGHT | Heavy items which takes 6,7,8,9,10 days. | string | enum: - VALUE - STANDARD - THREE_DAY - TWO_DAY - ONE_DAY - FREIGHT status: type: string description: Shipping Method Status, Can be ACTIVE or INACTIVE status enum: - ACTIVE - INACTIVE configurations: type: array description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge items: required: - addressTypes - regions - transitTime type: object properties: regions: type: array description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc items: required: - regionCode type: object properties: regionCode: type: string regionName: type: string subRegions: type: array items: required: - subRegionCode type: object properties: subRegionCode: type: string subRegionName: type: string states: type: array items: required: - stateCode type: object properties: stateCode: type: string stateName: type: string stateSubregions: type: array items: required: - stateSubregionCode type: object properties: stateSubregionCode: type: string stateSubregionName: type: string description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc addressTypes: type: array description: Supported address types like PO_BOX STREET MILITARY items: type: string description: Supported address types like PO_BOX STREET MILITARY enum: - PO_BOX - MILITARY - STREET transitTime: type: integer description: Time in transit format: int32 perShippingCharge: required: - unitOfMeasure type: object properties: unitOfMeasure: type: string description: Unit of Measure eg. LB shippingAndHandling: required: - amount - currency type: object properties: amount: type: number description: 'The numerical amount for that charge. Example: 9.99' currency: type: string description: 'The type of currency for the charge. Example: USD for US Dollars' description: Shipping and Handling Charge chargePerWeight: required: - amount - currency type: object properties: amount: type: number description: Charge Per weight, value USD currency: type: string description: Currency, eg. USD description: Per Item Charge chargePerItem: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Per Weight Charge description: Charge per shipping tieredShippingCharges: type: array description: Tiered Shipping Charges items: required: - maxLimit - minLimit type: object properties: minLimit: type: number description: Minimum Limit maxLimit: type: number description: Maximum Limit shipCharge: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Details of Shipping Charge description: Tiered Shipping Charges description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge description: Array of different ship methods of a Shipping Template ShippingTemplate: required: - name - rateModelType - shippingMethods - status - type type: object properties: id: type: string description: Shipping Template ID name: pattern: "^[A-Za-z0-9\\s]+$" type: string description: Shipping Template Name type: type: string description: Shipping Template Type, should be CUSTOM or 3PL Specific enum: - DEFAULT - CUSTOM - DELIVERR rateModelType: type: string description: 'This is the shipping model type. TIERED_PRICING: This model means that you charge shipping based on the price of the item PER_SHIPMENT_PRICING: This model means that you charge shipping based on the weight of your items (per pound), or you charge shipping based on the number of items purchased in an order' enum: - TIERED_PRICING - PER_SHIPMENT_PRICING status: type: string description: Shipping Template Status, Can be ACTIVE or INACTIVE status enum: - ACTIVE - INACTIVE shippingMethods: type: array description: Array of different ship methods of a Shipping Template items: required: - configurations - shipMethod - status type: object properties: shipMethod: type: string description: |- | Attribute | Description | Data Type | | ---- | ----------------- | ------- | | VALUE | All Marketplace Sellers must offer Value shipping to Walmart.com customers for items that can't ship within expected transit times for standard shipping. | string | | STANDARD | You are required to offer standard shipping to Walmart.com customers. | string | | TWO_DAY | If approved for this option, you'll provide free 2-day shipping to customers and your items will be enabled with the TwoDay delivery tag. | string | | ONE_DAY | If approved for this option, you can provide free and paid 1-day shipping to customers and your items will be enabled with OneDay delivery. | string | | FREIGHT | Heavy items which takes 6,7,8,9,10 days. | string | enum: - VALUE - STANDARD - THREE_DAY - TWO_DAY - ONE_DAY - FREIGHT status: type: string description: Shipping Method Status, Can be ACTIVE or INACTIVE status enum: - ACTIVE - INACTIVE configurations: type: array description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge items: required: - addressTypes - regions - transitTime type: object properties: regions: type: array description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc items: required: - regionCode type: object properties: regionCode: type: string regionName: type: string subRegions: type: array items: required: - subRegionCode type: object properties: subRegionCode: type: string subRegionName: type: string states: type: array items: required: - stateCode type: object properties: stateCode: type: string stateName: type: string stateSubregions: type: array items: required: - stateSubregionCode type: object properties: stateSubregionCode: type: string stateSubregionName: type: string description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc addressTypes: type: array description: Supported address types like PO_BOX STREET MILITARY items: type: string description: Supported address types like PO_BOX STREET MILITARY enum: - PO_BOX - MILITARY - STREET transitTime: type: integer description: Time in transit format: int32 perShippingCharge: required: - unitOfMeasure type: object properties: unitOfMeasure: type: string description: Unit of Measure eg. LB shippingAndHandling: required: - amount - currency type: object properties: amount: type: number description: 'The numerical amount for that charge. Example: 9.99' currency: type: string description: 'The type of currency for the charge. Example: USD for US Dollars' description: Shipping and Handling Charge chargePerWeight: required: - amount - currency type: object properties: amount: type: number description: Charge Per weight, value USD currency: type: string description: Currency, eg. USD description: Per Item Charge chargePerItem: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Per Weight Charge description: Charge per shipping tieredShippingCharges: type: array description: Tiered Shipping Charges items: required: - maxLimit - minLimit type: object properties: minLimit: type: number description: Minimum Limit maxLimit: type: number description: Maximum Limit shipCharge: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Details of Shipping Charge description: Tiered Shipping Charges description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge description: Array of different ship methods of a Shipping Template createdBy: type: string modifiedBy: type: string createdDate: type: number modifiedDate: type: number State: required: - stateCode type: object properties: stateCode: type: string stateName: type: string stateSubregions: type: array items: required: - stateSubregionCode type: object properties: stateSubregionCode: type: string stateSubregionName: type: string StateSubregion: required: - stateSubregionCode type: object properties: stateSubregionCode: type: string stateSubregionName: type: string SubRegion: required: - subRegionCode type: object properties: subRegionCode: type: string subRegionName: type: string states: type: array items: required: - stateCode type: object properties: stateCode: type: string stateName: type: string stateSubregions: type: array items: required: - stateSubregionCode type: object properties: stateSubregionCode: type: string stateSubregionName: type: string TieredShippingCharge: required: - maxLimit - minLimit type: object properties: minLimit: type: number description: Minimum Limit maxLimit: type: number description: Maximum Limit shipCharge: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Details of Shipping Charge description: Tiered Shipping Charges UpdateShippingTemplateRequest: required: - name - rateModelType - shippingMethods - status - type type: object properties: name: pattern: "^[A-Za-z0-9\\s]+$" type: string description: Shipping Template Name type: type: string description: Shipping Template Type, should be CUSTOM or 3PL Specific enum: - DEFAULT - CUSTOM - DELIVERR rateModelType: type: string description: 'This is the shipping model type. TIERED_PRICING: This model means that you charge shipping based on the price of the item PER_SHIPMENT_PRICING: This model means that you charge shipping based on the weight of your items (per pound), or you charge shipping based on the number of items purchased in an order' enum: - TIERED_PRICING - PER_SHIPMENT_PRICING status: type: string description: Shipping Template Status, Can be ACTIVE or INACTIVE status enum: - ACTIVE - INACTIVE shippingMethods: type: array description: Array of different ship methods of a Shipping Template items: required: - configurations - shipMethod - status type: object properties: shipMethod: type: string description: |- | Attribute | Description | Data Type | | ---- | ----------------- | ------- | | VALUE | All Marketplace Sellers must offer Value shipping to Walmart.com customers for items that can't ship within expected transit times for standard shipping. | string | | STANDARD | You are required to offer standard shipping to Walmart.com customers. | string | | TWO_DAY | If approved for this option, you'll provide free 2-day shipping to customers and your items will be enabled with the TwoDay delivery tag. | string | | ONE_DAY | If approved for this option, you can provide free and paid 1-day shipping to customers and your items will be enabled with OneDay delivery. | string | | FREIGHT | Heavy items which takes 6,7,8,9,10 days. | string | enum: - VALUE - STANDARD - THREE_DAY - TWO_DAY - ONE_DAY - FREIGHT status: type: string description: Shipping Method Status, Can be ACTIVE or INACTIVE status enum: - ACTIVE - INACTIVE configurations: type: array description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge items: required: - addressTypes - regions - transitTime type: object properties: regions: type: array description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc items: required: - regionCode type: object properties: regionCode: type: string regionName: type: string subRegions: type: array items: required: - subRegionCode type: object properties: subRegionCode: type: string subRegionName: type: string states: type: array items: required: - stateCode type: object properties: stateCode: type: string stateName: type: string stateSubregions: type: array items: required: - stateSubregionCode type: object properties: stateSubregionCode: type: string stateSubregionName: type: string description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc addressTypes: type: array description: Supported address types like PO_BOX STREET MILITARY items: type: string description: Supported address types like PO_BOX STREET MILITARY enum: - PO_BOX - MILITARY - STREET transitTime: type: integer description: Time in transit format: int32 perShippingCharge: required: - unitOfMeasure type: object properties: unitOfMeasure: type: string description: Unit of Measure eg. LB shippingAndHandling: required: - amount - currency type: object properties: amount: type: number description: 'The numerical amount for that charge. Example: 9.99' currency: type: string description: 'The type of currency for the charge. Example: USD for US Dollars' description: Shipping and Handling Charge chargePerWeight: required: - amount - currency type: object properties: amount: type: number description: Charge Per weight, value USD currency: type: string description: Currency, eg. USD description: Per Item Charge chargePerItem: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Per Weight Charge description: Charge per shipping tieredShippingCharges: type: array description: Tiered Shipping Charges items: required: - maxLimit - minLimit type: object properties: minLimit: type: number description: Minimum Limit maxLimit: type: number description: Maximum Limit shipCharge: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Details of Shipping Charge description: Tiered Shipping Charges description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge description: Array of different ship methods of a Shipping Template CalendarDayConfigurationResponse: type: object properties: standardProcessingSchedule: type: object properties: sunday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm monday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm tuesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm wednesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm thursday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm friday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm saturday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm description: Operating Schedule for the fulfillment center additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd carrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier description: Calendar day promise details. For examples, please refer to 'Sample 2 - Calendar Day Configurations' in request & response samples. CalendarDayShiftResponse: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm CarrierDetail1: type: object properties: carrierMethodName: type: string description: Name of the shipping carrier. Carrier names can be retrieved from the Get carrier methods API. carrierMethodType: type: string description: Shipping method. description: Shipping type provided. CarrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier CarrierWeekendCalendarDay: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. PostalAddress: type: object properties: addressLine1: type: string description: Street address of the fulfillment center. city: type: string description: City of the fulfillment center. state: type: string description: State of the fulfillment center. country: type: string description: Country of the fulfillment center. postalCode: type: string description: Postal code of the fulfillment center. description: Postal code of the fulfillment center. ShipNodeResponseUpdate: type: object properties: shipNode: type: string description: The fulfillment center or ship node Id which uniquely identifies each facility and is autogenerated during the creation of fulfillment center. Every time a facility is added, a new ship node id is generated. nodeType: type: string description: 'Defines if the fulfillment center is virtual, seller owned or third party owned. Allowed values: PHYSICAL, VIRTUAL, 3PL.' shipNodeName: type: string description: Name of the fulfillment center. status: type: string description: 'Status of fulfillment center. Allowed values: ACTIVE, INACTIVE..' timeZone: type: string description: Time zone that the seller ships from.Allowed timezones are PST, EST, CST, MST. distributorSupportedServices: type: array description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY, ONE_DAY_DELIVERY.' items: type: string description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY, ONE_DAY_DELIVERY.' customNodeId: type: string description: Custom node identifier provided by seller. Allowed values are alphanumeric | String postalAddress: type: object properties: addressLine1: type: string description: Street address of the fulfillment center. city: type: string description: City of the fulfillment center. state: type: string description: State of the fulfillment center. country: type: string description: Country of the fulfillment center. postalCode: type: string description: Postal code of the fulfillment center. description: Postal code of the fulfillment center. shippingDetails: type: array description: Shipping Details. items: type: object properties: twoDayShipping: type: array description: Shipping type provided. items: type: object properties: carrierMethodName: type: string description: Name of the shipping carrier. Carrier names can be retrieved from the Get carrier methods API. carrierMethodType: type: string description: Shipping method. description: Shipping type provided. description: Shipping Details. calendarDayConfiguration: type: object properties: standardProcessingSchedule: type: object properties: sunday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm monday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm tuesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm wednesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm thursday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm friday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm saturday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm description: Operating Schedule for the fulfillment center additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd carrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier description: Calendar day promise details. For examples, please refer to 'Sample 2 - Calendar Day Configurations' in request & response samples. ShippingDetails: type: object properties: twoDayShipping: type: array description: Shipping type provided. items: type: object properties: carrierMethodName: type: string description: Name of the shipping carrier. Carrier names can be retrieved from the Get carrier methods API. carrierMethodType: type: string description: Shipping method. description: Shipping type provided. description: Shipping Details. StandardProcessingScheduleResponse: type: object properties: sunday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm monday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm tuesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm wednesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm thursday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm friday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm saturday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm description: Operating Schedule for the fulfillment center CalendarDayConfiguration: required: - additionalDaysOff - standardProcessingSchedule type: object properties: standardProcessingSchedule: required: - friday - monday - saturday - sunday - thursday - tuesday - wednesday type: object properties: sunday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' monday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' tuesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' wednesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' thursday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' friday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' saturday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' description: Operating Schedule for the fulfillment center additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd carrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier description: Calendar day promise details. For examples, please refer to 'Sample 2 - Calendar Day Configurations' in request & response samples. CalendarDayShift: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' ShipNode: type: object properties: shipNode: type: string description: The fulfillment center or ship node Id which uniquely identifies each facility and is autogenerated during the creation of fulfillment center. Every time a facility is added, a new ship node id is generated. shipNodeName: type: string description: Name of the fulfillment center. status: type: string description: 'Status of fulfillment center. Allowed values: ACTIVE, INACTIVE..' timeZone: type: string description: Time zone that the seller ships from.Allowed timezones are PST, EST, CST, MST. distributorSupportedServices: type: array description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' items: type: string description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' customNodeId: type: string description: Custom node identifier provided by seller. Allowed values are alphanumeric | String postalAddress: type: object properties: addressLine1: type: string description: Street address of the fulfillment center. city: type: string description: City of the fulfillment center. state: type: string description: State of the fulfillment center. country: type: string description: Country of the fulfillment center. postalCode: type: string description: Postal code of the fulfillment center. description: Postal code of the fulfillment center. shippingDetails: type: array description: Shipping Details. items: type: object properties: twoDayShipping: type: array description: Shipping type provided. items: type: object properties: carrierMethodName: type: string description: Name of the shipping carrier. Carrier names can be retrieved from the Get carrier methods API. carrierMethodType: type: string description: Shipping method. description: Shipping type provided. description: Shipping Details. calendarDayConfiguration: required: - additionalDaysOff - standardProcessingSchedule type: object properties: standardProcessingSchedule: required: - friday - monday - saturday - sunday - thursday - tuesday - wednesday type: object properties: sunday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' monday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' tuesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' wednesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' thursday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' friday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' saturday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' description: Operating Schedule for the fulfillment center additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd carrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier description: Calendar day promise details. For examples, please refer to 'Sample 2 - Calendar Day Configurations' in request & response samples. ShipNodeHeader: type: object properties: version: type: string StandardProcessingSchedule: required: - friday - monday - saturday - sunday - thursday - tuesday - wednesday type: object properties: sunday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' monday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' tuesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' wednesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' thursday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' friday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' saturday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' description: Operating Schedule for the fulfillment center UpdateFulfillmentCenterRequest: type: object properties: shipNodeHeader: type: object properties: version: type: string shipNode: type: object properties: shipNode: type: string description: The fulfillment center or ship node Id which uniquely identifies each facility and is autogenerated during the creation of fulfillment center. Every time a facility is added, a new ship node id is generated. shipNodeName: type: string description: Name of the fulfillment center. status: type: string description: 'Status of fulfillment center. Allowed values: ACTIVE, INACTIVE..' timeZone: type: string description: Time zone that the seller ships from.Allowed timezones are PST, EST, CST, MST. distributorSupportedServices: type: array description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' items: type: string description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' customNodeId: type: string description: Custom node identifier provided by seller. Allowed values are alphanumeric | String postalAddress: type: object properties: addressLine1: type: string description: Street address of the fulfillment center. city: type: string description: City of the fulfillment center. state: type: string description: State of the fulfillment center. country: type: string description: Country of the fulfillment center. postalCode: type: string description: Postal code of the fulfillment center. description: Postal code of the fulfillment center. shippingDetails: type: array description: Shipping Details. items: type: object properties: twoDayShipping: type: array description: Shipping type provided. items: type: object properties: carrierMethodName: type: string description: Name of the shipping carrier. Carrier names can be retrieved from the Get carrier methods API. carrierMethodType: type: string description: Shipping method. description: Shipping type provided. description: Shipping Details. calendarDayConfiguration: required: - additionalDaysOff - standardProcessingSchedule type: object properties: standardProcessingSchedule: required: - friday - monday - saturday - sunday - thursday - tuesday - wednesday type: object properties: sunday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' monday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' tuesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' wednesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' thursday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' friday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' saturday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' description: Operating Schedule for the fulfillment center additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd carrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier description: Calendar day promise details. For examples, please refer to 'Sample 2 - Calendar Day Configurations' in request & response samples. CalendarDayConfigurationForAccountLevelFCResponse: required: - additionalDaysOff type: object properties: carrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd CalendarDayConfigurationForAccountLevelFCRequest: required: - calendarDayOffOverrides type: object properties: carrierWeekendCalendar: type: object properties: sunday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. saturday: type: object properties: workingDay: type: boolean description: Flag to specify if carrier is operational on the specified day of each week. Allowed values are true or false. description: Operating Schedule for the carrier calendarDayOffOverrides: required: - actionType - overrideDate type: object properties: overrideDate: type: string description: 'Calendar Date to be overridden ' actionType: type: string description: Action type for the override date. Can be ADD or REMOVE description: Calendar Day Overrides to update override dates. Format for Date is ISO 8601. format: yyyy-MM-dd CalendarDayOffOverrides: required: - actionType - overrideDate type: object properties: overrideDate: type: string description: 'Calendar Date to be overridden ' actionType: type: string description: Action type for the override date. Can be ADD or REMOVE description: Calendar Day Overrides to update override dates. Format for Date is ISO 8601. format: yyyy-MM-dd CreateShippingTemplateRequest: type: object properties: name: type: string description: Shipping Template Name type: type: string description: Shipping Template Type, should be CUSTOM or 3PL Specific rateModelType: type: string description: 'This is the shipping model type. TIERED_PRICING: This model means that you charge shipping based on the price of the item PER_SHIPMENT_PRICING: This model means that you charge shipping based on the weight of your items (per pound), or you charge shipping based on the number of items purchased in an order' status: type: string description: Shipping Template Status, Can be ACTIVE or INACTIVE status shippingMethods: type: array description: Array of different ship methods of a Shipping Template items: required: - configurations - shipMethod - status type: object properties: shipMethod: type: string description: |- | Attribute | Description | Data Type | | ---- | ----------------- | ------- | | VALUE | All Marketplace Sellers must offer Value shipping to Walmart.com customers for items that can't ship within expected transit times for standard shipping. | string | | STANDARD | You are required to offer standard shipping to Walmart.com customers. | string | | TWO_DAY | If approved for this option, you'll provide free 2-day shipping to customers and your items will be enabled with the TwoDay delivery tag. | string | | ONE_DAY | If approved for this option, you can provide free and paid 1-day shipping to customers and your items will be enabled with OneDay delivery. | string | | FREIGHT | Heavy items which takes 6,7,8,9,10 days. | string | enum: - VALUE - STANDARD - THREE_DAY - TWO_DAY - ONE_DAY - FREIGHT status: type: string description: Shipping Method Status, Can be ACTIVE or INACTIVE status enum: - ACTIVE - INACTIVE configurations: type: array description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge items: required: - addressTypes - regions - transitTime type: object properties: regions: type: array description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc items: required: - regionCode type: object properties: regionCode: type: string regionName: type: string subRegions: type: array items: required: - subRegionCode type: object properties: subRegionCode: type: string subRegionName: type: string states: type: array items: required: - stateCode type: object properties: stateCode: type: string stateName: type: string stateSubregions: type: array items: required: - stateSubregionCode type: object properties: stateSubregionCode: type: string stateSubregionName: type: string description: Supported Regions includes 48 State Street, 48 State – Street Po Box/Street, AK and HI – Street etc addressTypes: type: array description: Supported address types like PO_BOX STREET MILITARY items: type: string description: Supported address types like PO_BOX STREET MILITARY enum: - PO_BOX - MILITARY - STREET transitTime: type: integer description: Time in transit format: int32 perShippingCharge: required: - unitOfMeasure type: object properties: unitOfMeasure: type: string description: Unit of Measure eg. LB shippingAndHandling: required: - amount - currency type: object properties: amount: type: number description: 'The numerical amount for that charge. Example: 9.99' currency: type: string description: 'The type of currency for the charge. Example: USD for US Dollars' description: Shipping and Handling Charge chargePerWeight: required: - amount - currency type: object properties: amount: type: number description: Charge Per weight, value USD currency: type: string description: Currency, eg. USD description: Per Item Charge chargePerItem: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Per Weight Charge description: Charge per shipping tieredShippingCharges: type: array description: Tiered Shipping Charges items: required: - maxLimit - minLimit type: object properties: minLimit: type: number description: Minimum Limit maxLimit: type: number description: Maximum Limit shipCharge: required: - amount - currency type: object properties: amount: type: number description: Charge Per Item, value USD currency: type: string description: Currency, eg. USD description: Details of Shipping Charge description: Tiered Shipping Charges description: Contains an array of Regions, an array of Address Type, Transit Time and Per shipping charge or array of Tired Shipping Charge description: Array of different ship methods of a Shipping Template CalendarDayConfigurationResponseCreate: type: object properties: standardProcessingSchedule: type: object properties: sunday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm monday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm tuesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm wednesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm thursday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm friday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm saturday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm description: Operating Schedule for the fulfillment center additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd description: Calendar day promise details. For examples, please refer to 'Sample 2 - Calendar Day Configurations' in request & response samples. ShipNodeResponse: type: object properties: shipNode: type: string description: The fulfillment center or ship node Id which uniquely identifies each facility and is autogenerated during the creation of fulfillment center. Every time a facility is added, a new ship node id is generated. nodeType: type: string description: 'Defines if the fulfillment center is virtual, seller owned or third party owned. Allowed values: PHYSICAL, VIRTUAL, 3PL.' shipNodeName: type: string description: Name of the fulfillment center. status: type: string description: 'Status of fulfillment center. Allowed values: ACTIVE, INACTIVE..' timeZone: type: string description: Time zone that the seller ships from.Allowed timezones are PST, EST, CST, MST. distributorSupportedServices: type: array description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' items: type: string description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' customNodeId: type: string description: Custom node identifier provided by seller. Allowed values are alphanumeric | String postalAddress: type: object properties: addressLine1: type: string description: Street address of the fulfillment center. city: type: string description: City of the fulfillment center. state: type: string description: State of the fulfillment center. country: type: string description: Country of the fulfillment center. postalCode: type: string description: Postal code of the fulfillment center. description: Postal code of the fulfillment center. shippingDetails: type: array description: Shipping Details. items: type: object properties: twoDayShipping: type: array description: Shipping type provided. items: type: object properties: carrierMethodName: type: string description: Name of the shipping carrier. Carrier names can be retrieved from the Get carrier methods API. carrierMethodType: type: string description: Shipping method. description: Shipping type provided. description: Shipping Details. calendarDayConfiguration: type: object properties: standardProcessingSchedule: type: object properties: sunday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm monday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm tuesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm wednesday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm thursday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm friday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm saturday: type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. Example: ''09:30''(HH:mm)' format: HH:mm description: Operating Schedule for the fulfillment center additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. If there are no additional off days, then this list will be empty. Format for Date is ISO 8601. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd description: Calendar day promise details. For examples, please refer to 'Sample 2 - Calendar Day Configurations' in request & response samples. CalendarDayConfigurationRequest: required: - additionalDaysOff - standardProcessingSchedule type: object properties: standardProcessingSchedule: required: - friday - monday - saturday - sunday - thursday - tuesday - wednesday type: object properties: sunday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' monday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' tuesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' wednesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' thursday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' friday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' saturday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' description: Operating Schedule for the fulfillment center additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd description: Calendar day promise details. For examples, please refer to 'Sample 2 - Calendar Day Configurations' in request & response samples. CreateFulfillmentCenterRequest: type: object properties: shipNodeHeader: type: object properties: version: type: string shipNode: type: array items: type: object properties: shipNodeName: type: string description: Name of the fulfillment center. status: type: string description: 'Status of fulfillment center. Allowed values: ACTIVE, INACTIVE..' timeZone: type: string description: Time zone that the seller ships from.Allowed timezones are PST, EST, CST, MST. distributorSupportedServices: type: array description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' items: type: string description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' customNodeId: type: string description: Custom node identifier provided by seller. Allowed values are alphanumeric | String postalAddress: type: object properties: addressLine1: type: string description: Street address of the fulfillment center. city: type: string description: City of the fulfillment center. state: type: string description: State of the fulfillment center. country: type: string description: Country of the fulfillment center. postalCode: type: string description: Postal code of the fulfillment center. description: Postal code of the fulfillment center. shippingDetails: type: array description: Shipping Details. items: type: object properties: twoDayShipping: type: array description: Shipping type provided. items: type: object properties: carrierMethodName: type: string description: Name of the shipping carrier. Carrier names can be retrieved from the Get carrier methods API. carrierMethodType: type: string description: Shipping method. description: Shipping type provided. description: Shipping Details. calendarDayConfiguration: required: - additionalDaysOff - standardProcessingSchedule type: object properties: standardProcessingSchedule: required: - friday - monday - saturday - sunday - thursday - tuesday - wednesday type: object properties: sunday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' monday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' tuesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' wednesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' thursday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' friday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' saturday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' description: Operating Schedule for the fulfillment center additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd description: Calendar day promise details. For examples, please refer to 'Sample 2 - Calendar Day Configurations' in request & response samples. ShipNodeRequest: type: object properties: shipNodeName: type: string description: Name of the fulfillment center. status: type: string description: 'Status of fulfillment center. Allowed values: ACTIVE, INACTIVE..' timeZone: type: string description: Time zone that the seller ships from.Allowed timezones are PST, EST, CST, MST. distributorSupportedServices: type: array description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' items: type: string description: 'The services supported by the defined physical ship node . The allowed values: TWO_DAY_DELIVERY.' customNodeId: type: string description: Custom node identifier provided by seller. Allowed values are alphanumeric | String postalAddress: type: object properties: addressLine1: type: string description: Street address of the fulfillment center. city: type: string description: City of the fulfillment center. state: type: string description: State of the fulfillment center. country: type: string description: Country of the fulfillment center. postalCode: type: string description: Postal code of the fulfillment center. description: Postal code of the fulfillment center. shippingDetails: type: array description: Shipping Details. items: type: object properties: twoDayShipping: type: array description: Shipping type provided. items: type: object properties: carrierMethodName: type: string description: Name of the shipping carrier. Carrier names can be retrieved from the Get carrier methods API. carrierMethodType: type: string description: Shipping method. description: Shipping type provided. description: Shipping Details. calendarDayConfiguration: required: - additionalDaysOff - standardProcessingSchedule type: object properties: standardProcessingSchedule: required: - friday - monday - saturday - sunday - thursday - tuesday - wednesday type: object properties: sunday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' monday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' tuesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' wednesday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' thursday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' friday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' saturday: required: - isWorkingDay type: object properties: isWorkingDay: type: boolean description: Flag to specify if shipNode is operational on the specified day of each week. Allowed values are true or false. cutOffTime: type: string description: 'Order processing cutoff time. Please note that cutoff time is respective of the seller’s time zone. If not provided in the request body, then by default it will be set to ''14:00''. Example: ''09:30''(HH:mm)' format: HH:mm default: '14:00' description: Operating Schedule for the fulfillment center additionalDaysOff: type: array description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd items: type: string description: 'List of additional days on which the fulfillment center is closed. For example, if the fulfillment center is closed on New Year’s Day, then add the date in the list. If there are no additional off days, then this list will be empty. Use ISO 8601 format for date. For example: ''2021-07-16''(yyyy-MM-dd) ' format: yyyy-MM-dd description: Calendar day promise details. For examples, please refer to 'Sample 2 - Calendar Day Configurations' in request & response samples. ThirdPartyShipNode1: type: object properties: shipNode: type: string description: The fulfillment center or ship node which uniquely identifies each facility and is retrieved from the Get all third party fulfillment providers API. status: type: string description: 'Status of fulfillment center. Allowed values: ACTIVE, INACTIVE.' Associate3PFulfillmentCenterRequest: type: object properties: shipNodeHeader: type: object properties: version: type: string shipNode: type: array items: type: object properties: shipNode: type: string description: The fulfillment center or ship node which uniquely identifies each facility and is retrieved from the Get all third party fulfillment providers API. status: type: string description: 'Status of fulfillment center. Allowed values: ACTIVE, INACTIVE.' CategoriesLagTimeDTO: type: object properties: categories: type: array description: List of item setup category level lag time exceptions configured for seller items: type: object properties: name: type: string description: Name of the item setup category which was used to request lag time exception fulfillmentLagTime: type: integer description: Maximum lag time configured for the item setup category format: int32 description: List of item setup category level lag time exceptions configured for seller CategoryLagTimeDTO: type: object properties: name: type: string description: Name of the item setup category which was used to request lag time exception fulfillmentLagTime: type: integer description: Maximum lag time configured for the item setup category format: int32 description: List of item setup category level lag time exceptions configured for seller LagTimeConfig: type: object properties: configurationName: type: string description: Name of the configuration enum: - LAG_TIME configuration: type: object properties: categories: type: array description: List of item setup category level lag time exceptions configured for seller items: type: object properties: name: type: string description: Name of the item setup category which was used to request lag time exception fulfillmentLagTime: type: integer description: Maximum lag time configured for the item setup category format: int32 description: List of item setup category level lag time exceptions configured for seller PartnerInfoDTO: type: object properties: partnerId: type: string description: The seller ID partnerName: type: string description: The seller's legal name partnerDisplayName: type: string description: The seller name shown on walmart.com partnerStoreId: type: string description: Partner/Seller ID for Walmart store URL businessRegNumber: type: string description: " A registered distinct identifier such as US Tax ID / Foreign Tax ID" countryOfIncorporation: type: string description: The country from where seller conducts their business | ISO 3166 Country code description: Details of partner ShippingConfig: type: object description: List of seller configurations like Lag Time anyOf: - type: object properties: configurationName: type: string description: Name of the configuration enum: - LAG_TIME configuration: type: object properties: categories: type: array description: List of item setup category level lag time exceptions configured for seller items: type: object properties: name: type: string description: Name of the item setup category which was used to request lag time exception fulfillmentLagTime: type: integer description: Maximum lag time configured for the item setup category format: int32 description: List of item setup category level lag time exceptions configured for seller ShippingConfigsResponseDTO: type: object properties: partner: type: object properties: partnerId: type: string description: The seller ID partnerName: type: string description: The seller's legal name partnerDisplayName: type: string description: The seller name shown on walmart.com partnerStoreId: type: string description: Partner/Seller ID for Walmart store URL businessRegNumber: type: string description: " A registered distinct identifier such as US Tax ID / Foreign Tax ID" countryOfIncorporation: type: string description: The country from where seller conducts their business | ISO 3166 Country code description: Details of partner configurations: type: array description: List of seller configurations like Lag Time items: type: object description: List of seller configurations like Lag Time anyOf: - type: object properties: configurationName: type: string description: Name of the configuration enum: - LAG_TIME configuration: type: object properties: categories: type: array description: List of item setup category level lag time exceptions configured for seller items: type: object properties: name: type: string description: Name of the item setup category which was used to request lag time exception fulfillmentLagTime: type: integer description: Maximum lag time configured for the item setup category format: int32 description: List of item setup category level lag time exceptions configured for seller ShippingTemplateSummary: type: object properties: id: type: string description: Shipping Template ID name: type: string description: Shipping Template Name type: type: string description: Shipping Template Type enum: - DEFAULT - CUSTOM - DELIVERR status: type: string description: Shipping Template/ Configurations active or inactive status enum: - ACTIVE - INACTIVE rateModelType: type: string enum: - TIERED_PRICING - PER_SHIPMENT_PRICING createdBy: type: string modifiedBy: type: string createdDate: type: number description: Template Creation Date modifiedDate: type: number description: Template Modified Date description: Array of Shipping Templates ShippingTemplatesSummary: type: object properties: shippingTemplates: type: array description: Array of Shipping Templates items: type: object properties: id: type: string description: Shipping Template ID name: type: string description: Shipping Template Name type: type: string description: Shipping Template Type enum: - DEFAULT - CUSTOM - DELIVERR status: type: string description: Shipping Template/ Configurations active or inactive status enum: - ACTIVE - INACTIVE rateModelType: type: string enum: - TIERED_PRICING - PER_SHIPMENT_PRICING createdBy: type: string modifiedBy: type: string createdDate: type: number description: Template Creation Date modifiedDate: type: number description: Template Modified Date description: Array of Shipping Templates totalRecords: type: number description: Total Number of records in the response of the API ShippingTemplateActivationStatus: type: object properties: activationStatus: type: string description: Shipping Template Activation Status, possible values can be NOT_ACTIVATED or ACTIVATED createdDate: type: number description: Activation Date modifiedDate: type: number description: Activation Status Last Modified Date FulfillmentCenterCoverageDetail: type: object properties: shipNode: type: string description: The fulfillment center or ship node Id which uniquely identifies each facility and is autogenerated during the creation of fulfillment center. Every time a facility is added, a new ship node id is generated. shipNodeName: type: string description: Name of the fulfillment center. coverageArea: type: array description: Two day shipping regions defined by Walmart for sellers. items: type: string description: Two day shipping regions defined by Walmart for sellers. CarrierDetail2: type: object properties: carrierMethodId: type: string description: Carrier Id carrierMethodName: type: string description: Carrier Name carrierMethodType: type: string description: Shipping method. Allowed Value is GROUND. carrierMethodDescription: type: string description: A description for the method carrier. ThirdPartyShipNode2: type: object properties: shipNode: type: string description: The fulfillment center or ship node Id which uniquely identifies each facility and is autogenerated during the creation of fulfillment center. Every time a facility is added, a new ship node id is generated. shipNodeName: type: string description: Name of the fulfillment center. AccountConfig: type: object properties: configurationName: type: string description: Name of the configuration. Allowed value is ACCOUNT configuration: type: object properties: status: type: string description: Status of Seller Account enum: - ACTIVE - ONBOARDING_ACTIVE - ONBOARDING_INACTIVE - SUSPENDED - TNS_DECLINED - TERMINATED AccountInfoDTO: type: object properties: status: type: string description: Status of Seller Account enum: - ACTIVE - ONBOARDING_ACTIVE - ONBOARDING_INACTIVE - SUSPENDED - TNS_DECLINED - TERMINATED FeedConfig: type: object properties: configurationName: type: string description: Name of the configuration. Allowed value is FEED configuration: type: object properties: values: type: array description: List of feed throttling configurations items: type: object properties: feedType: type: string description: The feed Type enum: - item - RETIRE_ITEM - MP_ITEM - MP_WFS_ITEM - MP_MAINTENANCE - SKU_TEMPLATE_MAP - SHIPPING_OVERRIDES - price - CPT_SELLER_ELIGIBILITY - promo - RETURNS_OVERRIDES - inventory - lagtime throttleConfigurations: type: array description: Details of throttling configurations items: type: object properties: type: type: string description: Type of the throttling configuration. Example 'SELLER' means throttling configurations at Seller level only. enum: - SELLER rate: type: object properties: count: type: integer description: Number of API calls that can be made in every replenish time window format: int64 replenishTimeWindow: type: object properties: value: type: integer description: The number representing size of time window format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''SECOND''' enum: - SECOND description: A time period set for throttling of number of API calls description: API call Rate fileSize: type: object properties: value: type: integer description: The number representing file size format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''BYTES''' enum: - BYTES description: The maximum allowed size of the feed file description: Details of throttling configurations description: List of feed throttling configurations FeedThrottlingConfigValues: type: object properties: values: type: array description: List of feed throttling configurations items: type: object properties: feedType: type: string description: The feed Type enum: - item - RETIRE_ITEM - MP_ITEM - MP_WFS_ITEM - MP_MAINTENANCE - SKU_TEMPLATE_MAP - SHIPPING_OVERRIDES - price - CPT_SELLER_ELIGIBILITY - promo - RETURNS_OVERRIDES - inventory - lagtime throttleConfigurations: type: array description: Details of throttling configurations items: type: object properties: type: type: string description: Type of the throttling configuration. Example 'SELLER' means throttling configurations at Seller level only. enum: - SELLER rate: type: object properties: count: type: integer description: Number of API calls that can be made in every replenish time window format: int64 replenishTimeWindow: type: object properties: value: type: integer description: The number representing size of time window format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''SECOND''' enum: - SECOND description: A time period set for throttling of number of API calls description: API call Rate fileSize: type: object properties: value: type: integer description: The number representing file size format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''BYTES''' enum: - BYTES description: The maximum allowed size of the feed file description: Details of throttling configurations description: List of feed throttling configurations FeedThrottlingDTO: type: object properties: feedType: type: string description: The feed Type enum: - item - RETIRE_ITEM - MP_ITEM - MP_WFS_ITEM - MP_MAINTENANCE - SKU_TEMPLATE_MAP - SHIPPING_OVERRIDES - price - CPT_SELLER_ELIGIBILITY - promo - RETURNS_OVERRIDES - inventory - lagtime throttleConfigurations: type: array description: Details of throttling configurations items: type: object properties: type: type: string description: Type of the throttling configuration. Example 'SELLER' means throttling configurations at Seller level only. enum: - SELLER rate: type: object properties: count: type: integer description: Number of API calls that can be made in every replenish time window format: int64 replenishTimeWindow: type: object properties: value: type: integer description: The number representing size of time window format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''SECOND''' enum: - SECOND description: A time period set for throttling of number of API calls description: API call Rate fileSize: type: object properties: value: type: integer description: The number representing file size format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''BYTES''' enum: - BYTES description: The maximum allowed size of the feed file description: Details of throttling configurations description: List of feed throttling configurations FileSize: type: object properties: value: type: integer description: The number representing file size format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''BYTES''' enum: - BYTES description: The maximum allowed size of the feed file PartnerConfig: type: object description: List of seller configurations like Seller Account & feed throttling values anyOf: - type: object properties: configurationName: type: string description: Name of the configuration. Allowed value is ACCOUNT configuration: type: object properties: status: type: string description: Status of Seller Account enum: - ACTIVE - ONBOARDING_ACTIVE - ONBOARDING_INACTIVE - SUSPENDED - TNS_DECLINED - TERMINATED - type: object properties: configurationName: type: string description: Name of the configuration. Allowed value is FEED configuration: type: object properties: values: type: array description: List of feed throttling configurations items: type: object properties: feedType: type: string description: The feed Type enum: - item - RETIRE_ITEM - MP_ITEM - MP_WFS_ITEM - MP_MAINTENANCE - SKU_TEMPLATE_MAP - SHIPPING_OVERRIDES - price - CPT_SELLER_ELIGIBILITY - promo - RETURNS_OVERRIDES - inventory - lagtime throttleConfigurations: type: array description: Details of throttling configurations items: type: object properties: type: type: string description: Type of the throttling configuration. Example 'SELLER' means throttling configurations at Seller level only. enum: - SELLER rate: type: object properties: count: type: integer description: Number of API calls that can be made in every replenish time window format: int64 replenishTimeWindow: type: object properties: value: type: integer description: The number representing size of time window format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''SECOND''' enum: - SECOND description: A time period set for throttling of number of API calls description: API call Rate fileSize: type: object properties: value: type: integer description: The number representing file size format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''BYTES''' enum: - BYTES description: The maximum allowed size of the feed file description: Details of throttling configurations description: List of feed throttling configurations PartnerConfigsResponseDTO: type: object properties: partner: type: object properties: partnerId: type: string description: The seller ID partnerName: type: string description: The seller's legal name partnerDisplayName: type: string description: The seller name shown on walmart.com partnerStoreId: type: string description: Partner/Seller ID for Walmart store URL businessRegNumber: type: string description: " A registered distinct identifier such as US Tax ID / Foreign Tax ID" countryOfIncorporation: type: string description: The country from where seller conducts their business | ISO 3166 Country code description: Details of partner configurations: type: array description: List of seller configurations like Seller Account & feed throttling values items: type: object description: List of seller configurations like Seller Account & feed throttling values anyOf: - type: object properties: configurationName: type: string description: Name of the configuration. Allowed value is ACCOUNT configuration: type: object properties: status: type: string description: Status of Seller Account enum: - ACTIVE - ONBOARDING_ACTIVE - ONBOARDING_INACTIVE - SUSPENDED - TNS_DECLINED - TERMINATED - type: object properties: configurationName: type: string description: Name of the configuration. Allowed value is FEED configuration: type: object properties: values: type: array description: List of feed throttling configurations items: type: object properties: feedType: type: string description: The feed Type enum: - item - RETIRE_ITEM - MP_ITEM - MP_WFS_ITEM - MP_MAINTENANCE - SKU_TEMPLATE_MAP - SHIPPING_OVERRIDES - price - CPT_SELLER_ELIGIBILITY - promo - RETURNS_OVERRIDES - inventory - lagtime throttleConfigurations: type: array description: Details of throttling configurations items: type: object properties: type: type: string description: Type of the throttling configuration. Example 'SELLER' means throttling configurations at Seller level only. enum: - SELLER rate: type: object properties: count: type: integer description: Number of API calls that can be made in every replenish time window format: int64 replenishTimeWindow: type: object properties: value: type: integer description: The number representing size of time window format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''SECOND''' enum: - SECOND description: A time period set for throttling of number of API calls description: API call Rate fileSize: type: object properties: value: type: integer description: The number representing file size format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''BYTES''' enum: - BYTES description: The maximum allowed size of the feed file description: Details of throttling configurations description: List of feed throttling configurations Rate: type: object properties: count: type: integer description: Number of API calls that can be made in every replenish time window format: int64 replenishTimeWindow: type: object properties: value: type: integer description: The number representing size of time window format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''SECOND''' enum: - SECOND description: A time period set for throttling of number of API calls description: API call Rate ThrottlingConfigDTO: type: object properties: type: type: string description: Type of the throttling configuration. Example 'SELLER' means throttling configurations at Seller level only. enum: - SELLER rate: type: object properties: count: type: integer description: Number of API calls that can be made in every replenish time window format: int64 replenishTimeWindow: type: object properties: value: type: integer description: The number representing size of time window format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''SECOND''' enum: - SECOND description: A time period set for throttling of number of API calls description: API call Rate fileSize: type: object properties: value: type: integer description: The number representing file size format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''BYTES''' enum: - BYTES description: The maximum allowed size of the feed file description: Details of throttling configurations TimeWindow: type: object properties: value: type: integer description: The number representing size of time window format: int64 unitOfMeasurement: type: string description: 'The unit of measurement. Example: ''SECOND''' enum: - SECOND description: A time period set for throttling of number of API calls ShippingTemplateId: type: object properties: id: type: string description: Shipping Template ID parameters: authorization: name: Authorization in: header description: Basic authorization header. Base 64 encodes the Client ID and Client Secret retrieved in step two of the integration steps. required: true schema: type: string example: Basic YzcyOTFjNmItNzI5MC00.... accessToken: name: WM_SEC.ACCESS_TOKEN in: header description: The access token retrieved in the Token API call required: true schema: type: string example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM..... channelType: name: WM_CONSUMER.CHANNEL.TYPE in: header description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding required: false schema: type: string correlationId: name: WM_QOS.CORRELATION_ID in: header description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID required: true schema: type: string example: b3261d2d-028a-4ef7-8602-633c23200af6 svcName: name: WM_SVC.NAME in: header description: Walmart Service Name required: true schema: type: string example: Walmart Service Name accept: name: Accept in: header description: 'Only supported Media Type : application/json' required: true schema: type: string example: application/json content-type: name: Content-Type in: header description: 'Only supported Media Type : application/json' required: true schema: type: string example: application/json tags: - name: Settings