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]
  • activityFeed(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • activityFeedItemType: [ActivityFeedItemEnum!],
  • noteType: [NoteTypeEnum!],
  • activityType: [ActivityTypeEnum!],
  • limit: Int,
  • pinned: Boolean,
  • scopes: [ActivityFeedScopesEnum!]
  • ): ActivityFeedConnection
  • # The amount of money that still needs to be paid
  • amountOutstanding: 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
  • automationTrackers(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • scopes: [AutomationTrackerScopesEnum!],
  • orderBy: AutomationTrackerOrderEnum
  • ): AutomationTrackerConnection!
  • # The contact being invoiced
  • contact: Contact
  • # When the invoice was created
  • createdAt: 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.
  • deals(after: String, before: String, first: Int, last: Int): DealConnection
  • # ID of the invoice
  • id: ID!
  • # items of the invoice
  • invoiceItems: [InvoiceItem!]
  • # Invoice notes of the invoice
  • invoiceNotes: String
  • # Invoice number of the invoice
  • invoiceNumber: String
  • # audit logs of the invoice
  • recentAudits: [Audit!]
  • # Status of the invoice
  • status: InvoiceStatusEnum
  • # Total before tax (in cents)
  • subtotal: Money
  • # Whether totals are inclusive or exclusive of tax
  • taxStatus: InvoiceTaxStatusEnum!
  • # Total amount of tax on invoice (in cents)
  • taxTotal: Money
  • # Total amount of invoice (in cents)
  • total: Money
  • # When the invoice was last updated
  • updatedAt: ISO8601DateTime!
  • }