OBJECT

Supplier

Represents a supplier entity.

link GraphQL Schema definition

  • type Supplier implements Object {
  • # The Supplier's INLT ID
  • id: ID!
  • # The client's unique identifier
  • cid: ID
  • # The Supplier's Manufacturer Identification number. If this is not provided, INLT
  • # will automatically generate a value.
  • mid: ID
  • # The Supplier's DUNS number.
  • duns: DUNS
  • # The Supplier's FDA Establishment Identification.
  • fei: String
  • # The Supplier's address.
  • address: Address!
  • # The Supplier's name.
  • name: String!
  • # The Supplier's phone number.
  • phone: Phone
  • # The Supplier's associated importers.
  • importers: [Importer]
  • # The supplier's URL on app.inlt.com
  • url: URL
  • createdTime: DateTime!
  • updatedTime: DateTime!
  • }