OBJECT

Invoice

Represents an INLT invoice

link GraphQL Schema definition

  • type Invoice implements Object {
  • # INLT's unique ID for the invoice
  • id: ID!
  • # The importer associated with the invoice. Only returned if type is shipment or
  • # continuousBond
  • importer: Importer
  • # The shipment associated with the invoice. Only returned if type is shipment
  • shipment: Shipment
  • # The type of invoice
  • type: InvoiceType!
  • # The current status of the invoice
  • status: InvoiceStatus!
  • # The invoice number printed on the PDF
  • number: ID!
  • # The due date of the invoice
  • dueTime: DateTime
  • # The time of the invoicing
  • invoicedTime: DateTime
  • # The time the
  • paidTime: DateTime
  • # The time the invoice was voided
  • voidTime: DateTime
  • # The payment source for this invoice
  • source: InvoiceSource
  • # The sending history of the invoice
  • deliveries: [InvoiceDelivery!]
  • # Total amount due in US Dollars
  • total: Money
  • # The individual charges on the invoice
  • lines: [InvoiceLine!]
  • # Documents associated with the invoice
  • docs: [InvoiceDoc!]
  • # The invoice's URL on app.inlt.com
  • url: URL
  • createdTime: DateTime!
  • updatedTime: DateTime!
  • }