OBJECT

Consignee

Represents a consignee entity.

link GraphQL Schema definition

  • type Consignee implements Object {
  • # The Consignee's Importers.
  • importers: [Importer!]
  • # The consignee's INLT ID
  • id: ID!
  • # The client's unique identifier for the consignee
  • cid: ID
  • # The consignee's Importer Number.
  • iorNumber: String!
  • # The consignee's address.
  • address: Address
  • # The consignee's name.
  • name: String!
  • # The consignee's phone number.
  • phone: Phone
  • # The consignee's DUNS number.
  • duns: DUNS
  • # The consignee's email.
  • email: Email
  • # The consignee is an individual.
  • isIndividual: Boolean
  • createdTime: DateTime!
  • updatedTime: DateTime!
  • }