Skip to content

Latest commit

 

History

History
66 lines (57 loc) · 8.07 KB

invoice.md

File metadata and controls

66 lines (57 loc) · 8.07 KB

Invoice

Stores information about an invoice. You use the Invoices API to create and manage invoices. For more information, see Manage Invoices Using the Invoices API.

Structure

Invoice

Fields

Name Type Tags Description
id string | undefined Optional The Square-assigned ID of the invoice.
version number | undefined Optional The Square-assigned version number, which is incremented each time an update is committed to the invoice.
locationId string | undefined Optional The ID of the location that this invoice is associated with.

If specified in a CreateInvoice request, the value must match the location_id of the associated order.
Constraints: Minimum Length: 1, Maximum Length: 255
orderId string | undefined Optional The ID of the order for which the invoice is created.
This field is required when creating an invoice, and the order must be in the OPEN state.

To view the line items and other information for the associated order, call the
RetrieveOrder endpoint using the order ID.
Constraints: Minimum Length: 1, Maximum Length: 255
primaryRecipient InvoiceRecipient | undefined Optional Represents a snapshot of customer data. This object stores customer data that is displayed on the invoice
and that Square uses to deliver the invoice.

When you provide a customer ID for a draft invoice, Square retrieves the associated customer profile and populates
the remaining InvoiceRecipient fields. You cannot update these fields after the invoice is published.
Square updates the customer ID in response to a merge operation, but does not update other fields.
paymentRequests InvoicePaymentRequest[] | undefined Optional The payment schedule for the invoice, represented by one or more payment requests that
define payment settings, such as amount due and due date. An invoice supports the following payment request combinations:

- One balance
- One deposit with one balance
- 2–12 installments
- One deposit with 2–12 installments

This field is required when creating an invoice. It must contain at least one payment request.
All payment requests for the invoice must equal the total order amount. For more information, see
Payment requests.

Adding INSTALLMENT payment requests to an invoice requires an
Invoices Plus subscription.
deliveryMethod string | undefined Optional Indicates how Square delivers the invoice to the customer.
invoiceNumber string | undefined Optional A user-friendly invoice number that is displayed on the invoice. The value is unique within a location.
If not provided when creating an invoice, Square assigns a value.
It increments from 1 and is padded with zeros making it 7 characters long
(for example, 0000001 and 0000002).
Constraints: Minimum Length: 1, Maximum Length: 191
title string | undefined Optional The title of the invoice, which is displayed on the invoice.
Constraints: Minimum Length: 1, Maximum Length: 255
description string | undefined Optional The description of the invoice, which is displayed on the invoice.
Constraints: Minimum Length: 1, Maximum Length: 65536
scheduledAt string | undefined Optional The timestamp when the invoice is scheduled for processing, in RFC 3339 format.
After the invoice is published, Square processes the invoice on the specified date,
according to the delivery method and payment request settings.

If the field is not set, Square processes the invoice immediately after it is published.
publicUrl string | undefined Optional The URL of the Square-hosted invoice page.
After you publish the invoice using the PublishInvoice endpoint, Square hosts the invoice
page and returns the page URL in the response.
nextPaymentAmountMoney Money | undefined Optional Represents an amount of money. Money fields can be signed or unsigned.
Fields that do not explicitly define whether they are signed or unsigned are
considered unsigned and can only hold positive amounts. For signed fields, the
sign of the value indicates the purpose of the money transfer. See
Working with Monetary Amounts
for more information.
status string | undefined Optional Indicates the status of an invoice.
timezone string | undefined Optional The time zone used to interpret calendar dates on the invoice, such as due_date.
When an invoice is created, this field is set to the timezone specified for the seller
location. The value cannot be changed.

For example, a payment due_date of 2021-03-09 with a timezone of America/Los_Angeles
becomes overdue at midnight on March 9 in America/Los_Angeles (which equals a UTC timestamp
of 2021-03-10T08:00:00Z).
createdAt string | undefined Optional The timestamp when the invoice was created, in RFC 3339 format.
updatedAt string | undefined Optional The timestamp when the invoice was last updated, in RFC 3339 format.
acceptedPaymentMethods InvoiceAcceptedPaymentMethods | undefined Optional The payment methods that customers can use to pay an invoice on the Square-hosted invoice page.
customFields InvoiceCustomField[] | undefined Optional Additional seller-defined fields that are displayed on the invoice. For more information, see
Custom fields.

Adding custom fields to an invoice requires an
Invoices Plus subscription.

Max: 2 custom fields
subscriptionId string | undefined Optional The ID of the subscription associated with the invoice.
This field is present only on subscription billing invoices.
saleOrServiceDate string | undefined Optional The date of the sale or the date that the service is rendered, in YYYY-MM-DD format.
This field can be used to specify a past or future date which is displayed on the invoice.
paymentConditions string | undefined Optional France only. The payment terms and conditions that are displayed on the invoice. For more information,
see Payment conditions.

For countries other than France, Square returns an INVALID_REQUEST_ERROR with a BAD_REQUEST code and
"Payment conditions are not supported for this location's country" detail if this field is included in CreateInvoice or UpdateInvoice requests.
Constraints: Minimum Length: 1, Maximum Length: 2000

Example (as JSON)

{
  "id": null,
  "version": null,
  "location_id": null,
  "order_id": null,
  "primary_recipient": null,
  "payment_requests": null,
  "delivery_method": null,
  "invoice_number": null,
  "title": null,
  "description": null,
  "scheduled_at": null,
  "public_url": null,
  "next_payment_amount_money": null,
  "status": null,
  "timezone": null,
  "created_at": null,
  "updated_at": null,
  "accepted_payment_methods": null,
  "custom_fields": null,
  "subscription_id": null,
  "sale_or_service_date": null,
  "payment_conditions": null
}