WarehouseAddressInput
Address payload nested in CreateWarehouseInput. Mirrors the subset of pickware_erp_address fields the warehouse admin form exposes; all fields are optional so the caller can supply only what they have.
input WarehouseAddressInput {
company: String
department: String
firstName: String
lastName: String
street: String
houseNumber: String
zipCode: String
city: String
state: String
countryIso: String
phone: String
email: String
comment: String
}
Fields
WarehouseAddressInput.company ● String scalar
Company line of the address.
WarehouseAddressInput.department ● String scalar
Department / business unit within the company.
WarehouseAddressInput.firstName ● String scalar
Contact first name.
WarehouseAddressInput.lastName ● String scalar
Contact last name.
WarehouseAddressInput.street ● String scalar
Street name.
WarehouseAddressInput.houseNumber ● String scalar
House number or street number suffix (kept separate from street for postal-format compatibility).
WarehouseAddressInput.zipCode ● String scalar
ZIP / postal code.
WarehouseAddressInput.city ● String scalar
City / town.
WarehouseAddressInput.state ● String scalar
State / region.
WarehouseAddressInput.countryIso ● String scalar
ISO 3166-1 alpha-2 country code (e.g. DE, AT, CH).
WarehouseAddressInput.phone ● String scalar
Contact phone number.
WarehouseAddressInput.email ● String scalar
Contact e-mail address.
WarehouseAddressInput.comment ● String scalar
Free-form note attached to the address.
Member Of
CreateWarehouseInput input