5cf7f780d3c8

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-10235140907.9 KB
Accounting

Retrieves sales quotes

get/Quotes

Query parameters

DateFromstring date

Filter for quotes after a particular date

DateTostring date

Filter for quotes before a particular date

ExpiryDateFromstring date

Filter for quotes expiring after a particular date

ExpiryDateTostring date

Filter for quotes before a particular date

ContactIDstring uuid

Filter for quotes belonging to a particular contact

Statusstring

Filter for quotes of a particular Status

pageinteger

e.g. page=1 – Up to 100 Quotes will be returned in a single API call with line items shown for each quote

orderstring

Order by an any element

QuoteNumberstring

Filter by quote number (e.g. GET https://.../Quotes?QuoteNumber=QU-0001)

Headers

If-Modified-Sincestring date-time

Only records created or modified since this timestamp will be returned

Response

Success - return response of type quotes array with all quotes

Example response

{
  "Quotes": [
    {
      "Contact": {
        "UpdatedDateUTC": "/Date(1573755038314)/",
        "BrandingTheme": {
          "CreatedDateUTC": "/Date(1573755038314)/"
        },
        "BatchPayments": {
          "BankAccountNumber": "123-456-1111111",
          "BankAccountName": "ACME Bank",
          "Details": "Hello World",
          "Code": "ABC",
          "Reference": "Foobar"
        },
        "Attachments": [
          {
            "AttachmentID": "00000000-0000-0000-0000-000000000000",
            "FileName": "xero-dev.jpg",
            "Url": "https://api.xero.com/api.xro/2.0/Accounts/da962997-a8bd-4dff-9616-01cdc199283f/Attachments/sample5.jpg",
            "MimeType": "image/jpg"
          }
        ]
      },
      "LineItems": [
        {
          "LineItemID": "00000000-0000-0000-0000-000000000000",
          "AccountID": "00000000-0000-0000-0000-000000000000",
          "Tracking": [
            {
              "TrackingCategoryID": "00000000-0000-0000-0000-000000000000",
              "TrackingOptionID": "00000000-0000-0000-0000-000000000000",
              "Name": "Region",
              "Option": "North"
            }
          ],
          "RepeatingInvoiceID": "00000000-0000-0000-0000-000000000000"
        }
      ],
      "UpdatedDateUTC": "/Date(1573755038314)/"
    }
  ]
}