Billing
The billing address and fiscal data of an order. Permission required: billing:read
type Billing {
address1: String
address2: String
city: String
companyName: String
country: String
createdAt: ISO8601DateTime
currency: String
destinationCode: String
email: String
exchangeRate: Float
firstName: String
fiscalCode: String
id: ID
isoCountry: String
lastName: String
pec: String
province: String
telephone: String
updatedAt: ISO8601DateTime
vatNumber: String
zipCode: String
}
Fields
Billing.address1 ● String scalar
The street address.
Billing.address2 ● String scalar
Empty on stored orders: a billing address2 submitted at import is appended to address1 during acquisition. Shippings keep their address2 as submitted instead.
Billing.city ● String scalar
The city.
Billing.companyName ● String scalar
The company name of the recipient.
Billing.country ● String scalar
The extended country name (for example Italy).
Billing.createdAt ● ISO8601DateTime scalar
When the record was created.
Billing.currency ● String scalar
The order currency, as an ISO 4217 code.
Billing.destinationCode ● String scalar
The SDI destination code for Italian electronic invoicing.
Billing.email ● String scalar
The email address of the recipient.
Billing.exchangeRate ● Float scalar
The exchange rate applied to the order currency (1.0 when no conversion applies).
Billing.firstName ● String scalar
The first name of the recipient.
Billing.fiscalCode ● String scalar
The customer's fiscal code.
Billing.id ● ID scalar
The unique identifier of the record.
Billing.isoCountry ● String scalar
The country, as an ISO 3166-1 alpha-2 code (for example IT).
Billing.lastName ● String scalar
The last name of the recipient.
Billing.pec ● String scalar
The customer's certified email (PEC) address.
Billing.province ● String scalar
The province.
Billing.telephone ● String scalar
Normalized to the 00 international notation at import (for example +390212345678 is stored as 00390212345678).
Billing.updatedAt ● ISO8601DateTime scalar
When the record was last updated.
Billing.vatNumber ● String scalar
The customer's VAT number. An Italian number submitted with the IT prefix is stored without it; other country prefixes are kept as submitted. A populated value forces invoiceRequired to true and is validated against VIES to detect B2B sales (reverse charge when applicable).
Billing.zipCode ● String scalar
The postal code.
Member Of
Order object