Invoice
The invoice object contains information held against an invoice record. This includes credit notes, too.
Last updated
The invoice object contains information held against an invoice record. This includes credit notes, too.
Last updated
Invoice records in Current include both invoices and credits. Use the type
object to determine whether you’re working with an invoice or credit.
Invoices and credit notes can be created manually, from an opportunity, or from a project. The link between an invoice and its sources is created on each invoice item.
The invoice
object can be accessed in document layouts created against the following modules:
Returns invoices linked to a particular opportunity.
Returns invoices linked to a particular organization.
Returns active invoices linked to a particular organization.
The invoice
object can be accessed in discussion templates created against the following modules:
Returns invoices linked to a particular opportunity.
Returns invoices linked to a particular organization.
Returns active invoices linked to a particular organization.
balance
Returns the invoice balance, i.e. the invoice charge total including tax after any payments or refunds.
Payments logged in Xero, QuickBooks Online, or Sage are not included. We can't access payment information from linked accounting solutions in document layouts or discussion templates.
billing_address
Returns the invoice billing address.
billing_address_detail
Returns address objects for the billing address against the invoice.
billing_address_name
Returns the name of the billing address against the invoice.
charge_excluding_tax_total
Returns the invoice charge total excluding tax.
charge_including_tax_total
Returns the invoice charge total including tax.
charge_total
Returns the invoice charge total.
This may be including or excluding tax depending on the value of the “Catalog Prices” setting in System Preferences.
combined_discount_total
Returns the total discount from deal pricing and percentage discounting on the invoice.
deal_discount_total
Returns the total discount from deal pricing on the invoice.
delivery_address
Returns the invoice delivery address.
delivery_address_detail
Returns address objects for the delivery address against the invoice.
delivery_address_name
Returns the name of the delivery address against the invoice.
You may also use the venue object (below).
description
Returns the invoice (internal) description.
discount_total
Returns the total discount from percentage discounting on the invoice.
due_at
Returns the date and time that the invoice is due at.
external_description
Returns the invoice external description.
has_discount?
Returns true
if the invoice has percentage based discounts; false
otherwise.
id
Returns the invoice ID.
The ID is an internal reference for a record. It's not exposed in our web interface and shouldn't be confused with the invoice number (below).
invoiced_at
Returns the date entered in the invoice “Document Date” field.
is_paid?
Returns true
if the invoice has the status “Paid”; false
otherwise.
Invoices posted to Xero, QuickBooks Online, or Sage have the status “Posted”. We can't access payment information from linked accounting solutions in document layouts or discussion templates.
is_posted?
Returns true
if the invoice has the status “Posted”; false
otherwise.
An integration with Xero or QuickBooks Online is required for an invoice to be posted.
items
Returns invoice item objects for items on the invoice.
name
Returns the invoice subject.
number
Returns the invoice number.
Issue an invoice to give it a number.
payment_total
Returns the total of any payments logged against the invoice.
Payments logged in Xero, QuickBooks Online, or Sage are not included. We can't access payment information from linked accounting solutions in document layouts or discussion templates.
payments
Returns invoice transaction objects for payments logged against the invoice.
reference
Returns the value of the invoice customer reference.
refunds
Returns invoice transaction objects for refunds logged against the invoice.
sources
Returns opportunity or project objects for the invoice sources.
Sources are set against invoice items rather than the invoice itself.
When an invoice is raised from an opportunity, it will generally have one source: the originating opportunity.
When an invoice is raised from a project, it will have sources for each of the invoiced opportunities in the project.
When a part invoice is created for a project, the project will be source.
A manual invoice may have no sources.
status
Returns the invoice status code.
Invoices posted to Xero, QuickBooks Online, or Sage have the status “Posted”. We can't access payment information from linked accounting solutions in document layouts or discussion templates.
Code
Status name
0
Open
10
Issued
20
Paid
30
Posted
40
Voided
status_name
Returns the invoice status name.
Status names are in the language set against your user profile.
Open
Issued
Paid
Posted
Voided
Invoices posted to Xero, QuickBooks Online, or Sage have the status “Posted”. We can't access payment information from linked accounting solutions in document layouts or discussion templates.
tax_class_name
Returns the invoice tax class.
This may differ from the organization tax class.
tax_total
Returns the invoice tax total.
taxes
Returns invoice tax objects for taxes on the invoice.
transaction_total
Returns the total of any transactions logged against the invoice.
This includes both payments and refunds.
Payments logged in Xero, QuickBooks Online, or Sage are not included. We can't access payment information from linked accounting solutions in document layouts or discussion templates.
transactions
Returns invoice transaction objects for transactions logged against the invoice.
This includes both payments and refunds.
type
Returns the invoice type ID.
ID
Type name
0
Invoice
1
Credit note
type_name
Returns the invoice type name.
Type names are in the language set against your user profile.
Invoice
Credit Note
venue
Returns venue objects for the venue against the invoice.
An invoice delivery address can be a venue, but a venue might not always be an invoice's delivery address. If you don't choose a venue when creating an invoice, using {{ invoice.venue.name }}
won't return the same as {{ invoice.delivery_address_name }}
.