OBJECT
Invoice
Invoice details
link GraphQL Schema definition
- type Invoice {
- # Activity feed items
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- # activityFeedItemType: [Not documented]
- # noteType: [Not documented]
- # activityType: [Not documented]
- # limit: [Not documented]
- # pinned: [Not documented]
- # scopes: [Not documented]
- (
- : String,
- : String,
- : Int,
- : Int,
- : [ActivityFeedItemEnum!],
- : [NoteTypeEnum!],
- : [ActivityTypeEnum!],
- : Int,
- : Boolean,
- : [ActivityFeedScopesEnum!]
- ): ActivityFeedConnection
- # Total amount due for the invoice (in cents)
- : Money
- # The amount of money that still needs to be paid
- : Money
- # Total amount paid towards the invoice (in cents)
- : Money
- # The automation trackers of an invoice
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- # scopes: scopes of the automation trackers
- # orderBy: order of the automation trackers
- (
- : String,
- : String,
- : Int,
- : Int,
- : [AutomationTrackerScopesEnum!],
- : AutomationTrackerOrderEnum
- ): AutomationTrackerConnection!
- # The contact being invoiced
- : Contact
- # When the invoice was created
- : ISO8601DateTime!
- # deals of the invoice
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (: String, : String, : Int, : Int): DealConnection
- # The date when the invoice is due
- : ISO8601DateTime
- # ID of the invoice
- : ID!
- # items of the invoice
- : [InvoiceItem!]
- # Invoice notes of the invoice
- : String
- # Invoice number of the invoice
- : String
- # Last note popup text
- : String
- # Last note text
- : String
- # Type of next task due
- : String
- # Next task popup text
- : String
- # Next task text
- : String
- # audit logs of the invoice
- : [Audit!]
- # Status of the invoice
- : InvoiceStatusEnum
- # Total before tax (in cents)
- : Money
- # Whether totals are inclusive or exclusive of tax
- : InvoiceTaxStatusEnum!
- # Total amount of tax on invoice (in cents)
- : Money
- # Total amount of invoice (in cents)
- : Money
- # When the invoice was last updated
- : ISO8601DateTime!
- }
link Require by
- CreateInvoicePayloadAutogenerated return type of CreateInvoice
- DealAssociationnull
- DestroyInvoicePayloadAutogenerated return type of DestroyInvoice
- Enquirynull
- InvoiceConnectionThe connection type for Invoice.
- InvoiceEdgeAn edge in a connection.
- InvoiceItemInvoiceItem details
- Notenull
- QueryThe query root of this schema
- TaskTask record
- UpdateInvoicePayloadAutogenerated return type of UpdateInvoice