{
  "openapi": "3.0.1",
  "info": {
    "title": "Fulfillment Options APIs",
    "description": "\nThe Fulfillment Options Service provides APIs to retrieve fulfillment options(delivery dates, inventory) for product offers/sku items. It returns applicable fulfillment options either at the SKU level or at the cart level.\n- The clients shall use it to retrieve the delivery methods as they go through the product list, their details and the configuration pages to display the available options.",
    "version": "4.0.0",
    "contact": {}
  },
  "paths": {
    "/product-fulfillment-options": {
      "get": {
        "tags": [
          "Find Fulfillment Options"
        ],
        "summary": "Hardgood Product Availability Options",
        "description": "This endpoint is takes in offer Id's as a request query parameter (comma separated) and returns a list of fulfillment options available.   \nThe response contains a list of fulfillment options for each offer id entered in the request. These objects hold information about the such as the availability of the product, the shipment and delivery dates (if the product is available), the quantity of the product available and so on and so forth.\n",
        "operationId": "List Fulfillment Options",
        "parameters": [
          {
            "name": "idpctx-uuid",
            "in": "header",
            "required": false,
            "description": "UUID (user id)",
            "example": "a830552c",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "description": "Comma-separated properties to be provided in response",
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false
          },
          {
            "name": "offerIds",
            "schema": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "in": "query",
            "style": "form",
            "explode": false,
            "description": "Comma separated list of Product Offer Ids",
            "required": true,
            "example": [
              "417df8e3-2026-455b-aa79-03d3545e7f6d"
            ]
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "postCode",
            "example": "10001",
            "description": "Zip Code of the shopping location"
          },
          {
            "schema": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "in": "query",
            "example": [
              "DF"
            ],
            "name": "fulfillmentMethod",
            "style": "form",
            "explode": false,
            "required": true,
            "description": "Fulfillment method names (Direct fulfillment, Click to store) - comma separated list.  \n  Possible values are DF, C2S.\n"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "prepaid",
                "postpaid"
              ]
            },
            "in": "query",
            "name": "ratingType",
            "description": "Conditional parameter: Applicable if the product type is wireless."
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "placeId",
            "description": "Place Id(Address Id) of the requested address.",
            "example": "0000MDGVN"
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "customerType",
            "description": "The type of customer requesting service.",
            "example": "consumer"
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "cartCategory",
            "description": "Cart Category Values (for legacy clients)"
          },
          {
            "schema": {
              "type": "integer"
            },
            "in": "query",
            "name": "quantity",
            "description": "Quantity. Only one offer or sku id should be present in offerIds.",
            "example": 1
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "channel",
            "description": "Name of the channel. Possible values are \"SelfService\".",
            "required": true,
            "example": "SelfService"
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "skus",
            "description": "Comma separated list of SKU Id's",
            "style": "form",
            "explode": false
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProductFulfillmentOptionsResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      },
      "parameters": []
    },
    "/cart-fulfillment-options": {
      "get": {
        "tags": [
          "Find Fulfillment Options"
        ],
        "summary": "Cart Shipping Options",
        "description": "Get fulfilment details with all available options for cart like delivery promise dates, and availability. This endpoint takes in the cartId as a query parameter in the request and returns the list of fulfillment options available.\n",
        "operationId": "List Fulfillment Options in Cart Level",
        "parameters": [
          {
            "name": "idpctx-uuid",
            "in": "header",
            "required": true,
            "description": "UUID (user id)",
            "example": "a830552c",
            "schema": {
              "type": "string"
            }
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "cartId",
            "description": "Cart ID",
            "required": true,
            "example": "75021100-737d-11ee-b776-9139496b020e"
          },
          {
            "schema": {
              "type": "string"
            },
            "in": "query",
            "name": "postCode",
            "description": "Zip Code of the shopping location",
            "example": "10001"
          },
          {
            "schema": {
              "type": "boolean",
              "default": false
            },
            "in": "query",
            "name": "disableAddressValidation",
            "description": "Takes in a boolean value. If true, address validation will not be done i.e. the call to geo-address-management-system would be skipped."
          },
          {
            "schema": {
              "type": "boolean",
              "default": false
            },
            "in": "query",
            "name": "enableAllPriorityList",
            "description": "Returns all the items with the subgroup and priority mapping"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProductFulfillmentOptionsResponse"
                },
                "examples": {
                  "cart-fulfillment-options-response-example-prepaid-wireless": {
                    "$ref": "#/components/examples/cart-fulfillment-options-200-prepaid-wireless"
                  },
                  "cart-fulfillment-options-response-example-prepaid-wireless-df,c2s": {
                    "$ref": "#/components/examples/cart-fulfillment-options-200-DF-C2S"
                  },
                  "cart-fulfillment-options--prepaid-wireless-df-multiple-shippingMethods": {
                    "$ref": "#/components/examples/cart-fulfillment-options-200-DF-C2S"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                },
                "example": {
                  "code": "FO-V40000000",
                  "reason": "Required query parameter cartId not specified",
                  "message": "Required query parameter cartId not specified",
                  "status": "400"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    }
  },
  "tags": [
    {
      "name": "Find Fulfillment Options"
    }
  ],
  "servers": [
    {
      "url": "https://sales-internal-api-test-e2.az.3pc.att.com/msapi/salesapi/fulfillment-options-papi-test3/v1"
    }
  ],
  "components": {
    "schemas": {
      "Error": {
        "required": [
          "code",
          "reason"
        ],
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "description": "Application relevant detail, defined in the API or a common list."
          },
          "reason": {
            "type": "string",
            "description": "Explanation of the reason for the error which can be shown to a client user."
          },
          "message": {
            "type": "string",
            "description": "More details and corrective actions related to the error which can be shown to a client user."
          },
          "status": {
            "type": "string",
            "description": "HTTP Error code extension"
          },
          "referenceError": {
            "type": "string",
            "description": "URI of documentation describing the error.",
            "format": "uri"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class."
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name."
          }
        },
        "description": "Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)"
      },
      "ProductFulfillmentOptionsResponse": {
        "description": "",
        "type": "object",
        "properties": {
          "productFulfillmentOptions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductFulfillmentOption"
            }
          }
        }
      },
      "ProductFulfillmentOption": {
        "description": "",
        "type": "object",
        "properties": {
          "offerId": {
            "type": "string",
            "description": "Offer Id"
          },
          "skuId": {
            "type": "string",
            "description": "SKU Id"
          },
          "billCode": {
            "type": "string",
            "description": "Bill code"
          },
          "fulfillmentOptions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FulfillmentOption"
            }
          }
        }
      },
      "FulfillmentOption": {
        "description": "Fulfillment option",
        "type": "object",
        "properties": {
          "fulfillmentMethod": {
            "type": "string"
          },
          "signalStatus": {
            "type": "string"
          },
          "availableQty": {
            "type": "number"
          },
          "available": {
            "type": "boolean"
          },
          "sku": {
            "type": "string"
          },
          "dates": {
            "$ref": "#/components/schemas/DFDate"
          },
          "productOffering": {
            "$ref": "#/components/schemas/ProductOfferingRef"
          },
          "price": {
            "$ref": "#/components/schemas/FulfillmentOptionPrice"
          },
          "finalPrice": {
            "$ref": "#/components/schemas/FulfillmentOptionPrice"
          },
          "shippingInstruction": {
            "$ref": "#/components/schemas/ShippingInstruction"
          }
        }
      },
      "DFDate": {
        "description": "Direct Fulfillment Date",
        "type": "object",
        "properties": {
          "shipmentDates": {
            "type": "object",
            "properties": {
              "dateFrom": {
                "type": "string"
              },
              "dateTo": {
                "type": "string"
              }
            }
          },
          "deliveryDates": {
            "type": "object",
            "properties": {
              "dateFrom": {
                "type": "string"
              },
              "dateTo": {
                "type": "string"
              }
            }
          }
        }
      },
      "FulfillmentOptionPrice": {
        "description": "Direct Fulfillment Date",
        "type": "object",
        "properties": {
          "dutyFreeAmount": {
            "$ref": "#/components/schemas/Money"
          }
        }
      },
      "ShippingInstruction": {
        "description": "Shipping Instructions and details for the carrier",
        "type": "object",
        "properties": {
          "signatureRequired": {
            "type": "boolean",
            "description": "Signature required for delivery"
          },
          "instructionCharacteristic": {
            "type": "array",
            "description": "Array of characteristics with name-value pairs when signature-optionality-mvp1dot1 is enabled",
            "items": {
              "$ref": "#/components/schemas/Characteristic"
            }
          }
        }
      },
      "ProductOfferingRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "productOfferingType": {
            "type": "string",
            "description": "TMF++::Type of the product offering\n"
          },
          "primary": {
            "type": "boolean",
            "description": "TMF++::Indicates whether the product offering has a business significance for the customer&#58;\n- It is reflected as a product for the customer and it is actionable - the customer can perform ordering actions on it\n- An action performed on a primary offer can impact the actions available for its bundled or dependent offers (for example, when ownership of a primary offer is changed some internal offers cannot be added or removed)\n"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "A product offering represents entities that are orderable from the provider of the catalog, this resource includes pricing information."
      },
      "Money": {
        "type": "object",
        "properties": {
          "unit": {
            "type": "string",
            "description": "Currency (ISO4217 norm uses 3 letters to define the currency)"
          },
          "value": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          }
        },
        "description": "A base / value business entity used to represent money"
      },
      "Characteristic": {
        "description": "Characteristic",
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the characteristic",
            "example": "SKU_With_Prefix"
          },
          "value": {
            "type": "string",
            "description": "Value of the characteristic",
            "example": "RTL.200BB"
          }
        }
      }
    },
    "examples": {
      "cart-fulfillment-options-200-prepaid-wireless": {
        "value": {
          "items": [
            {
              "id": "8300641e-50be-48b2-bcb9-d3f871561de3",
              "fulfillmentOptions": [
                {
                  "id": "8300641e-50be-48b2-bcb9-d3f871561de3",
                  "fulfillmentMethod": "DF",
                  "shippingMethod": "overnight",
                  "signalStatus": "SELL",
                  "availableQty": 3320,
                  "shippingCarrier": "unknown",
                  "shippingPriceCode": "88879",
                  "shippingCode": "AA1",
                  "available": true,
                  "priority": 1,
                  "defaultChoice": true,
                  "dates": {
                    "shipmentDates": {
                      "dateFrom": "2023-02-09",
                      "dateTo": "2023-02-11"
                    },
                    "deliveryDates": {
                      "dateFrom": "2023-02-10",
                      "dateTo": "2023-02-13"
                    }
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "productOffering": {
                    "id": "Mobile_Shipping_400019_400019",
                    "name": "Express Shipping",
                    "productOfferingType": "Mobile_shipping"
                  },
                  "product": {
                    "place": [
                      {
                        "role": "shipFromAddress",
                        "id": "ZMDC",
                        "name": "shipFromAddress"
                      },
                      {
                        "role": "orderLocationCode",
                        "id": "K006",
                        "name": "orderLocationCode"
                      }
                    ]
                  },
                  "lineItemId": 0,
                  "productOrderItemRelationship": [
                    {
                      "id": "8300641e-50be-48b2-bcb9-d3f871561de3",
                      "relationshipType": "Delivering"
                    }
                  ],
                  "extensions": {
                    "initDeliveryByFromDate": "2023-02-10T00:00:00Z",
                    "initDeliveryByToDate": "2023-02-13T00:00:00Z",
                    "initPromiseFromDate": "2023-02-09T00:00:00Z",
                    "initPromiseToDate": "2023-02-11T00:00:00Z"
                  },
                  "shippingInstruction": {
                    "signatureRequired": true,
                    "instructionCharacteristic": [
                      {
                        "name": "signature_required_reason",
                        "value": "REQUIRED"
                      }
                    ]
                  }
                },
                {
                  "id": "8300641e-50be-48b2-bcb9-d3f871561de3",
                  "fulfillmentMethod": "DF",
                  "shippingMethod": "priority",
                  "signalStatus": "SELL",
                  "availableQty": 3320,
                  "shippingCarrier": "unknown",
                  "shippingPriceCode": "88879",
                  "shippingCode": "AA1",
                  "available": true,
                  "priority": 1,
                  "defaultChoice": true,
                  "dates": {
                    "shipmentDates": {
                      "dateFrom": "2023-02-09",
                      "dateTo": "2023-02-11"
                    },
                    "deliveryDates": {
                      "dateFrom": "2023-02-10",
                      "dateTo": "2023-02-13"
                    }
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "productOffering": {
                    "id": "Mobile_Shipping_400020_400020",
                    "name": "Standard Shipping",
                    "productOfferingType": "Mobile_Shipping"
                  },
                  "product": {
                    "place": [
                      {
                        "role": "shipFromAddress",
                        "id": "ZMDC",
                        "name": "shipFromAddress"
                      },
                      {
                        "role": "orderLocationCode",
                        "id": "K006",
                        "name": "orderLocationCode"
                      }
                    ]
                  },
                  "lineItemId": 0,
                  "productOrderItemRelationship": [
                    {
                      "id": "8300641e-50be-48b2-bcb9-d3f871561de3",
                      "relationshipType": "Delivering"
                    }
                  ],
                  "extensions": {
                    "initDeliveryByFromDate": "2023-02-10T00:00:00Z",
                    "initDeliveryByToDate": "2023-02-13T00:00:00Z",
                    "initPromiseFromDate": "2023-02-09T00:00:00Z",
                    "initPromiseToDate": "2023-02-11T00:00:00Z"
                  },
                  "shippingInstruction": {
                    "signatureRequired": false,
                    "instructionCharacteristic": [
                      {
                        "name": "signature_required_reason",
                        "value": "NOT_REQUIRED"
                      }
                    ]
                  }
                }
              ]
            },
            {
              "id": "b195ed48-eb3b-45f2-87ae-b35d4ee6470d",
              "fulfillmentOptions": [
                {
                  "id": "b195ed48-eb3b-45f2-87ae-b35d4ee6470d",
                  "fulfillmentMethod": "DF",
                  "shippingMethod": "overnight",
                  "signalStatus": "SELL",
                  "availableQty": 3320,
                  "shippingCarrier": "unknown",
                  "shippingPriceCode": "88879",
                  "shippingCode": "AA1",
                  "available": true,
                  "priority": 1,
                  "defaultChoice": true,
                  "dates": {
                    "shipmentDates": {
                      "dateFrom": "2023-02-09",
                      "dateTo": "2023-02-11"
                    },
                    "deliveryDates": {
                      "dateFrom": "2023-02-10",
                      "dateTo": "2023-02-13"
                    }
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "productOffering": {
                    "id": "Mobile_Shipping_400019_400019",
                    "name": "Express Shipping",
                    "productOfferingType": "Mobile_shipping"
                  },
                  "product": {
                    "place": [
                      {
                        "role": "shipFromAddress",
                        "id": "ZMDC",
                        "name": "shipFromAddress"
                      },
                      {
                        "role": "orderLocationCode",
                        "id": "K006",
                        "name": "orderLocationCode"
                      }
                    ]
                  },
                  "lineItemId": 0,
                  "productOrderItemRelationship": [
                    {
                      "id": "b195ed48-eb3b-45f2-87ae-b35d4ee6470d",
                      "relationshipType": "Delivering"
                    }
                  ],
                  "extensions": {
                    "initDeliveryByFromDate": "2023-02-10T00:00:00Z",
                    "initDeliveryByToDate": "2023-02-13T00:00:00Z",
                    "initPromiseFromDate": "2023-02-09T00:00:00Z",
                    "initPromiseToDate": "2023-02-11T00:00:00Z"
                  },
                  "shippingInstruction": {
                    "signatureRequired": false,
                    "instructionCharacteristic": [
                      {
                        "name": "signature_required_reason",
                        "value": "OPTIONAL"
                      }
                    ]
                  }
                },
                {
                  "id": "b195ed48-eb3b-45f2-87ae-b35d4ee6470d",
                  "fulfillmentMethod": "DF",
                  "shippingMethod": "priority",
                  "signalStatus": "SELL",
                  "availableQty": 3320,
                  "shippingCarrier": "unknown",
                  "shippingPriceCode": "88879",
                  "shippingCode": "AA1",
                  "available": true,
                  "priority": 1,
                  "defaultChoice": true,
                  "dates": {
                    "shipmentDates": {
                      "dateFrom": "2023-02-09",
                      "dateTo": "2023-02-11"
                    },
                    "deliveryDates": {
                      "dateFrom": "2023-02-10",
                      "dateTo": "2023-02-13"
                    }
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "productOffering": {
                    "id": "Mobile_Shipping_400020_400020",
                    "name": "Standard Shipping",
                    "productOfferingType": "Mobile_Shipping"
                  },
                  "product": {
                    "place": [
                      {
                        "role": "shipFromAddress",
                        "id": "ZMDC",
                        "name": "shipFromAddress"
                      },
                      {
                        "role": "orderLocationCode",
                        "id": "K006",
                        "name": "orderLocationCode"
                      }
                    ]
                  },
                  "lineItemId": 0,
                  "productOrderItemRelationship": [
                    {
                      "id": "b195ed48-eb3b-45f2-87ae-b35d4ee6470d",
                      "relationshipType": "Delivering"
                    }
                  ],
                  "extensions": {
                    "initDeliveryByFromDate": "2023-02-10T00:00:00Z",
                    "initDeliveryByToDate": "2023-02-13T00:00:00Z",
                    "initPromiseFromDate": "2023-02-09T00:00:00Z",
                    "initPromiseToDate": "2023-02-11T00:00:00Z"
                  }
                }
              ]
            }
          ]
        }
      },
      "cart-fulfillment-options-200-DF-C2S": {
        "value": {
          "items": [
            {
              "id": "8300641e-50be-48b2-bcb9-d3f871561de3",
              "fulfillmentOptions": [
                {
                  "id": "8300641e-50be-48b2-bcb9-d3f871561de3",
                  "fulfillmentMethod": "DF",
                  "shippingMethod": "overnight",
                  "signalStatus": "SELL",
                  "availableQty": 3320,
                  "shippingCarrier": "unknown",
                  "shippingPriceCode": "88879",
                  "shippingCode": "AA1",
                  "available": true,
                  "priority": 1,
                  "defaultChoice": true,
                  "dates": {
                    "shipmentDates": {
                      "dateFrom": "2023-02-09",
                      "dateTo": "2023-02-11"
                    },
                    "deliveryDates": {
                      "dateFrom": "2023-02-10",
                      "dateTo": "2023-02-13"
                    }
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "productOffering": {
                    "id": "Mobile_Shipping_400019_400019",
                    "name": "Express Shipping",
                    "productOfferingType": "Delivery_Method"
                  },
                  "product": {
                    "place": [
                      {
                        "role": "shipFromAddress",
                        "id": "ZMDC",
                        "name": "shipFromAddress"
                      },
                      {
                        "role": "orderLocationCode",
                        "id": "K006",
                        "name": "orderLocationCode"
                      }
                    ]
                  },
                  "lineItemId": 0,
                  "productOrderItemRelationship": [
                    {
                      "id": "8300641e-50be-48b2-bcb9-d3f871561de3",
                      "relationshipType": "Delivering"
                    }
                  ],
                  "extensions": {
                    "initDeliveryByFromDate": "2023-02-10T00:00:00Z",
                    "initDeliveryByToDate": "2023-02-13T00:00:00Z",
                    "initPromiseFromDate": "2023-02-09T00:00:00Z",
                    "initPromiseToDate": "2023-02-11T00:00:00Z"
                  }
                },
                {
                  "id": "8300641e-50be-48b2-bcb9-d3f871561de3",
                  "fulfillmentMethod": "DF",
                  "shippingMethod": "priority",
                  "signalStatus": "SELL",
                  "availableQty": 3320,
                  "shippingCarrier": "unknown",
                  "shippingPriceCode": "88879",
                  "shippingCode": "AA1",
                  "available": true,
                  "priority": 1,
                  "defaultChoice": true,
                  "dates": {
                    "shipmentDates": {
                      "dateFrom": "2023-02-09",
                      "dateTo": "2023-02-11"
                    },
                    "deliveryDates": {
                      "dateFrom": "2023-02-10",
                      "dateTo": "2023-02-13"
                    }
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "productOffering": {
                    "id": "Mobile_Shipping_400020_400020",
                    "name": "Standard Shipping",
                    "productOfferingType": "Delivery_Method"
                  },
                  "product": {
                    "place": [
                      {
                        "role": "shipFromAddress",
                        "id": "ZMDC",
                        "name": "shipFromAddress"
                      },
                      {
                        "role": "orderLocationCode",
                        "id": "K006",
                        "name": "orderLocationCode"
                      }
                    ]
                  },
                  "lineItemId": 0,
                  "productOrderItemRelationship": [
                    {
                      "id": "8300641e-50be-48b2-bcb9-d3f871561de3",
                      "relationshipType": "Delivering"
                    }
                  ],
                  "extensions": {
                    "initDeliveryByFromDate": "2023-02-10T00:00:00Z",
                    "initDeliveryByToDate": "2023-02-13T00:00:00Z",
                    "initPromiseFromDate": "2023-02-09T00:00:00Z",
                    "initPromiseToDate": "2023-02-11T00:00:00Z"
                  }
                },
                {
                  "id": "8300641e-50be-48b2-bcb9-d3f871561de3",
                  "fulfillmentMethod": "Pickup",
                  "availableQty": 3320,
                  "available": true,
                  "priority": 2,
                  "defaultChoice": false,
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "productOffering": {
                    "id": "Mobile_Shipping_prod400032_sku400032",
                    "name": "Wireless shipping - Click to store",
                    "productOfferingType": "Delivery_Method"
                  },
                  "product": {
                    "place": [
                      {
                        "role": "store",
                        "id": "118036"
                      }
                    ]
                  },
                  "lineItemId": 0,
                  "productOrderItemRelationship": [
                    {
                      "id": "8300641e-50be-48b2-bcb9-d3f871561de3",
                      "relationshipType": "Delivering"
                    }
                  ]
                }
              ]
            },
            {
              "id": "b195ed48-eb3b-45f2-87ae-b35d4ee6470d",
              "fulfillmentOptions": [
                {
                  "id": "b195ed48-eb3b-45f2-87ae-b35d4ee6470d",
                  "fulfillmentMethod": "DF",
                  "shippingMethod": "overnight",
                  "signalStatus": "SELL",
                  "availableQty": 3320,
                  "shippingCarrier": "unknown",
                  "shippingPriceCode": "88879",
                  "shippingCode": "AA1",
                  "available": true,
                  "priority": 1,
                  "defaultChoice": true,
                  "dates": {
                    "shipmentDates": {
                      "dateFrom": "2023-02-09",
                      "dateTo": "2023-02-11"
                    },
                    "deliveryDates": {
                      "dateFrom": "2023-02-10",
                      "dateTo": "2023-02-13"
                    }
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "productOffering": {
                    "id": "Mobile_Shipping_400019_400019",
                    "name": "Express Shipping",
                    "productOfferingType": "Delivery_Method"
                  },
                  "product": {
                    "place": [
                      {
                        "role": "shipFromAddress",
                        "id": "ZMDC",
                        "name": "shipFromAddress"
                      },
                      {
                        "role": "orderLocationCode",
                        "id": "K006",
                        "name": "orderLocationCode"
                      }
                    ]
                  },
                  "lineItemId": 0,
                  "productOrderItemRelationship": [
                    {
                      "id": "b195ed48-eb3b-45f2-87ae-b35d4ee6470d",
                      "relationshipType": "Delivering"
                    }
                  ],
                  "extensions": {
                    "initDeliveryByFromDate": "2023-02-10T00:00:00Z",
                    "initDeliveryByToDate": "2023-02-13T00:00:00Z",
                    "initPromiseFromDate": "2023-02-09T00:00:00Z",
                    "initPromiseToDate": "2023-02-11T00:00:00Z"
                  }
                },
                {
                  "id": "b195ed48-eb3b-45f2-87ae-b35d4ee6470d",
                  "fulfillmentMethod": "DF",
                  "shippingMethod": "priority",
                  "signalStatus": "SELL",
                  "availableQty": 3320,
                  "shippingCarrier": "unknown",
                  "shippingPriceCode": "88879",
                  "shippingCode": "AA1",
                  "available": true,
                  "priority": 1,
                  "defaultChoice": true,
                  "dates": {
                    "shipmentDates": {
                      "dateFrom": "2023-02-09",
                      "dateTo": "2023-02-11"
                    },
                    "deliveryDates": {
                      "dateFrom": "2023-02-10",
                      "dateTo": "2023-02-13"
                    }
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "productOffering": {
                    "id": "Mobile_Shipping_400020_400020",
                    "name": "Standard Shipping",
                    "productOfferingType": "Delivery_Method"
                  },
                  "product": {
                    "place": [
                      {
                        "role": "shipFromAddress",
                        "id": "ZMDC",
                        "name": "shipFromAddress"
                      },
                      {
                        "role": "orderLocationCode",
                        "id": "K006",
                        "name": "orderLocationCode"
                      }
                    ]
                  },
                  "lineItemId": 0,
                  "productOrderItemRelationship": [
                    {
                      "id": "b195ed48-eb3b-45f2-87ae-b35d4ee6470d",
                      "relationshipType": "Delivering"
                    }
                  ],
                  "extensions": {
                    "initDeliveryByFromDate": "2023-02-10T00:00:00Z",
                    "initDeliveryByToDate": "2023-02-13T00:00:00Z",
                    "initPromiseFromDate": "2023-02-09T00:00:00Z",
                    "initPromiseToDate": "2023-02-11T00:00:00Z"
                  }
                }
              ]
            }
          ]
        }
      }
    },
    "requestBodies": {}
  }
}