OBJECT
Invoice
Represents an INLT invoice
link GraphQL Schema definition
- type Invoice implements Object {
- # INLT's unique ID for the invoice
- : ID!
- # The importer associated with the invoice. Only returned if type is shipment or
- # continuousBond
- : Importer
- # The shipment associated with the invoice. Only returned if type is shipment
- : Shipment
- # The type of invoice
- : InvoiceType!
- # The current status of the invoice
- : InvoiceStatus!
- # The invoice number printed on the PDF
- : ID!
- # The due date of the invoice
- : DateTime
- # The time of the invoicing
- : DateTime
- # The time the
- : DateTime
- # The time the invoice was voided
- : DateTime
- # The payment source for this invoice
- : InvoiceSource
- # The sending history of the invoice
- : [InvoiceDelivery!]
- # Total amount due in US Dollars
- : Money
- # The individual charges on the invoice
- : [InvoiceLine!]
- # Documents associated with the invoice
- : [InvoiceDoc!]
- # The invoice's URL on app.inlt.com
- : URL
- : DateTime!
- : DateTime!
- }