Inputs
CreateCompanyAddressInputType
Fields for creating a new company address.
Fields for creating a new company address.
input CreateCompanyAddressInputType {
firstName: String!
lastName: String!
addressLine1: String!
zip: String!
city: String!
country: String!
addressType: String!
email: String
phone: String
company: String
careOf: String
addressLine2: String
addressLine3: String
region: String
}
Fields
firstName ● String! non-null scalar required
The first name of the address contact.
lastName ● String! non-null scalar required
The last name of the address contact.
addressLine1 ● String! non-null scalar required
The primary address line.
zip ● String! non-null scalar required
The zip or postal code.
city ● String! non-null scalar required
The city.
country ● String! non-null scalar required
The 2-character ISO 3166-1 alpha-2 country code (e.g. 'SE').
addressType ● String! non-null scalar required
The address type. Valid values: 'billing', 'shipping', or 'billingandshipping'.
email ● String scalar
The email address of the address contact.
phone ● String scalar
The phone number of the address contact.
company ● String scalar
The company name for this address.
careOf ● String scalar
The care-of information.
addressLine2 ● String scalar
The second address line.
addressLine3 ● String scalar
The third address line.
region ● String scalar
The region or state.
Member Of
createCompanyAddress mutation