# Update Warehouse Update a specific warehouse. Endpoint: PUT /api/v1/warehouse/{id} Version: 1.0 ## Path parameters: - `id` (integer, required) ## Request fields (application/json): - `code` (string, required) Warehouse code (unique). Example: "ALM01" - `nationalIdentityCard` (string) National Identity Card associated to the warehouse. Example: "12345678A" - `description` (string, required) - `address` (string) - `postalCode` (string) - `population` (string) - `country` (integer) - `state` (integer) - `phone1` (string) - `phone2` (string) - `email` (string) - `byDefault` (boolean) ## Response 200 fields (application/json): - `id` (integer, required) Unique identifier of the entity Example: 1 - `code` (string, required) Warehouse code (unique per warehouse). Example: "ALM01" - `nationalIdentityCard` (string) National Identity Card associated to the warehouse. Example: "12345678A" - `description` (string, required) Warehouse description. Example: "Central warehouse" - `address` (string) Street address of the warehouse. Example: "Av. de la Industria, 23" - `postalCode` (string) Postal code. Example: "03001" - `population` (string) Population or locality (city/town) of the warehouse. Example: "Alicante" - `country` (object) Country information. See ApiCountryListReadDto.java for structure. - `country.code` (string, required) Country code (usually ISO numeric or similar). Example: 724 - `country.description` (string, required) Country description or name. Example: "Spain" - `country.isoCode` (string) ISO Alpha-2 code for the country. Enum: "AD", "AE", "AF", "AG", "AI", "AL", "AM", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW" - `country.customerVatType` (string) Type of VAT scheme for customers in this country. Example: "GENERAL" - `country.geographicalLocation` (string, required) Geographical location of the country. See ApiGeographicalLocation enum for values. Enum: "CEUTA_MELILLA_CANARIAS", "COMMUNITY", "NATIONAL", "OTHERS" - `state` (object) State information. See ApiStateListReadDto.java for structure. - `state.code` (string, required) - `state.description` (string) - `state.country` (object) - `state.isoCode` (string) - `phone1` (string) First contact phone number. Example: "+34965123456" - `phone2` (string) Second contact phone number. Example: "+34965111111" - `email` (string) Contact email address for the warehouse. Example: "warehouse@company.com" - `byDefault` (boolean) True if this is the default warehouse. Example: true