GraphQL OBJECT

State

Contact’s state. Five- or six-character ID of the customer's country and state based on ISO 3166-2. It is required for Australia, Brazil, Canada, India, Ireland, Japan, the UAE, and the USA.

link Definition

  • type State {
  • # State code.
  • id: StateEnum
  • # State name.
  • name: String
  • # Country in which the state lies.
  • country: Country
  • # Five- or six-character ID of the country and state. The country and state codes
  • # are separated by a dash, see ISO 3166-2.
  • isoCode: String
  • # Two-character ID of the state, see ISO 3166-2.
  • isoCodeState: String
  • # Type of applicable tax, e.g. sales tax, value added tax.
  • taxType: TaxType
  • }