Skip to main content

WarehouseAddress

Address information for warehouse locations.

Contains comprehensive address and contact details for warehouse facilities including physical location, contact information, and operational settings for shipping and logistics operations.

type WarehouseAddress {
id: Int!
createdAt: DateTime!
lastModifiedAt: DateTime!
firstName: String
middleName: String
lastName: String
gender: Gender!
company: String
street: String!
number: String
numberExtension: String
postalCode: String!
city: String!
region: String
country: String!
phone: String
mobile: String
email: String
fax: String
code: String
notes: String
icp: YesNo!
url: String
name: String
}

Fields

WarehouseAddress.id ● Int! non-null scalar

Unique identifier for the warehouse address.

Primary key used to reference this address record throughout the system and for address-related operations.

WarehouseAddress.createdAt ● DateTime! non-null scalar

Address creation timestamp.

Date and time when this address was initially created in the system, used for auditing and record tracking.

WarehouseAddress.lastModifiedAt ● DateTime! non-null scalar

Last modification timestamp.

Date and time when any address information was last updated, used for change tracking and data synchronization.

WarehouseAddress.firstName ● String scalar

First name of the primary contact person.

Given name of the main contact person for this warehouse address, used for deliveries and communication. Maximum 30 characters.

WarehouseAddress.middleName ● String scalar

Middle name of the primary contact person.

Middle name or initial of the main contact person for this warehouse address. Maximum 20 characters.

WarehouseAddress.lastName ● String scalar

Last name of the primary contact person.

Family name of the main contact person for this warehouse address, used for deliveries and official communication. Maximum 50 characters.

WarehouseAddress.gender ● Gender! non-null enum

Gender of the primary contact person.

Gender designation for the main contact person, used for appropriate communication and addressing. Defaults to unspecified.

WarehouseAddress.company ● String scalar

Company name associated with the warehouse address.

Business name or organization associated with this warehouse location, used for official correspondence and shipping documentation. Maximum 100 characters.

WarehouseAddress.street ● String! non-null scalar

Street name and address line.

Primary street address including street name and any additional address line information for the warehouse location. Maximum 150 characters.

WarehouseAddress.number ● String scalar

Street number or building number.

Numeric or alphanumeric identifier for the specific building or location on the street. Maximum 10 characters.

WarehouseAddress.numberExtension ● String scalar

Street number extension or unit identifier.

Additional identifier such as apartment number, suite, or unit designation. Maximum 7 characters.

WarehouseAddress.postalCode ● String! non-null scalar

Postal code for the warehouse location.

ZIP code, postal code, or equivalent regional identifier used for mail delivery and location identification. Maximum 10 characters.

WarehouseAddress.city ● String! non-null scalar

City or municipality name.

Name of the city, town, or municipality where the warehouse is located, used for addressing and regional identification. Maximum 100 characters.

WarehouseAddress.region ● String scalar

State, province, or regional identifier.

Two-character code for the state, province, or regional subdivision where the warehouse is located. Maximum 2 characters.

WarehouseAddress.country ● String! non-null scalar

Country code for the warehouse location.

Two-character ISO country code identifying the country where the warehouse is located, used for international shipping and tax calculations. Maximum 2 characters.

WarehouseAddress.phone ● String scalar

Fixed phone number that applies to this address [min: 6, max: 30]

WarehouseAddress.mobile ● String scalar

Mobile phone number that applies to this address [min: 6, max: 30]

WarehouseAddress.email ● String scalar

Email that applies to this address [valid email format needed]

WarehouseAddress.fax ● String scalar

Fax number that applies to this address [min: 6, max: 30]

WarehouseAddress.code ● String scalar

Address code

WarehouseAddress.notes ● String scalar

Address delivery notes

WarehouseAddress.icp ● YesNo! non-null enum

ICP address field defines whether tax should be applied to an order if the address is selected as a delivery address. Used when shipping b2b order abroad

WarehouseAddress.url ● String scalar

Address company domain url

WarehouseAddress.name ● String scalar

Address friendly descriptive name

Returned By

warehouseAddressCreate mutation ● warehouseAddressUpdate mutation

Member Of

Warehouse object