Billy API v2 Documentation

Billy’s new API is a JSON-based REST API. Our webapp uses the exact same API – which is your guarantee that the API will always support full functionality, and will generally be nice to work with. We take our own medicine!

If you have any questions or feedback (we love feedback!), please don’t hesitate to ask us on Twitter, or mail us at [email protected]

Table of Contents

Endpoint

The API is located at https://api.billyapp.com/.

All requests must use SSL.

Authentication

We currently support two authentication methods with the API.

OAuth access tokens

Here’s how to obtain an access token for your company:

  • Log into your account on app.billyapp.com.
  • Go to Settings -> Access tokens.
  • Click Create access token.
  • Enter a descriptive name for your token, so you can easily identify it later. Then hit the Save button.
  • Hover over the newly-generated access token and click the magnifier icon to show it clearly.
  • The token will now be selected in a text field, inside a lightbox.

All you have to do now is put this token in a X-Access-Token header. See Code examples for a complete example.

The tokens you create under Settings -> Access tokens are tied to that company only. If you have multiple companies, you’ll need a separate token for each one. Tokens are permanent – the don’t expire.

We plan to support a 3-legged OAuth solution eventually.

HTTP basic auth

You can use your normal email and password for authentication HTTP Basic Auth. You can try it right now, if you like. Just navigate to https://api.billyapp.com/v2/user. Enter your email and password in the browser’s credentials form, and you’ll see your user as a JSON document.

Conventions

Billy’s API is very consistent; we use the same conventions for all resources. Generally speaking, there are 5 ways to interact with a resource: Get one item, list, create, update and delete.

A resource is always accessed through its pluralized name. For example, you can access invoices through /v2/invoices.

In the examples that follow, we’ll use the invoices resource – but the exact same pattern applies to all resources.

Getting a single record

When getting a single record, you should use GET /v2/invoices/:id (where :id denotes a dynamic slug, and should be replaced by a real invoice ID). The response will be a JSON document with a root key named after the singular name containing the requested record. Invoice example:

{
  "invoice": {
    "id": "3mIN9EbDEeOg8QgAJ4gM",
    "invoiceNo": 41,
    ...
  }
}

Listing a resource

Use GET /v2/invoices. The response will be a JSON document with a root key named after the pluralized designation and containing an array of found records. Invoice example:

{
  "invoices": [
    {
      "id": "3mIN9EbDEeOg8QgAJ4gM",
      "invoiceNo": 41,
      ...
    },
    {
      "id": "4LmaTkbDEeOg8QgAJ4to",
      "invoiceNo": 42,
      ...
    }
  ]
}

Creating a record

Use POST /v2/invoices. The request body should be a JSON document containing a single root key named after the singular name, and should be a hash of record properties. Invoice example:

{
  "invoice": {
    "invoiceNo": 41,
    "entryDate": "2013-11-14",
    ...
  }
}

See more about the response body in the section Responses to create/update/delete requests. You can get the ID of the newly created record by getting invoices.0.id in the returned JSON document.

Updating a record

Use PUT /v2/invoices/:id. The request body should be a JSON document containing a single root key named after the singular name, and should be a hash of record properties. The hash does not need to include the record’s ID – if it does, though, it must be exactly the same ID you used in the URL. You can’t change a record’s ID. Invoice example:

{
  "invoice": {
    "contactMessage": 41,
    ...
  }
}

Only properties that you set in the invoice hash will be updated. Properties that are left out will be considered as if they are the same. So if all you need to do is to update the contactMessage property, then you don’t need to include any other properties.

The response works the same as with a POST request.

Deleting a record

Use DELETE /v2/invoices/:id. The request should not have a body.

DELETE requests are idempotent, meaning that if you try to DELETE the same record more than once (or delete any other non-existing ID), you will still receive a 200 OK response.

See more about the response body in the section ‘Responses to create/update/delete requests’.

Responses to create/update/delete requests

When you make POST, PUT, PATCH or DELETE requests to the API, the response will always include all records that changed because of the request. The record you created/updated will of course be included. Example: When you create an invoiceLine for an existing invoice, the amount field on the invoice will also be changed. So a POST /v2/invoiceLines would return something like:

{
  "invoices": [
    {
      "id": "3mIN9EbDEeOg8QgAJ4gM",
      "amount": 200,
      ...
    }
  ],
  invoiceLines: [
    {
      "id": "cgYxHZWCSfajDIvj9Q8yRQ",
      "invoiceId": "3mIN9EbDEeOg8QgAJ4gM",
      ...
    }
  ]
}

The IDs of deleted records will be accessible through the meta.deletedRecords property. Example: When requesting DELETE /v2/invoices/1234, the response will be:

{
  "meta": {
    "deletedRecords": {
      "invoices": [
        "1234"
      ]
    }
  }
}

Note that some PUT requests may delete records, too – for example, when you overwrite a record’s has-many relationship using an embedded array of child records.

Relationships

The API is smart about relationships. Many resources have relationships, and we distinguish between two kinds of relationships:

  • Belongs-to: A record of resource A has an ID that points to a record of resource B. Example: invoice records have a contactId property which points to a contact record.
  • Has-many: A record of resource A has zero or more records of resource B that point to it. Example: invoice records have zero or more invoiceLine records that have an invoiceId property, which points back. A has-many relationship always implies a belongs-to relationship on the inverse resource.

Normally, when you GET a resource that has relationships, the belongs-to relationship will be presented as the name of the property, suffixed with Id and containing the ID. If you GET /v2/invoices/123 and it responds with a "contactId": "987", you can get the contact by requesting GET /v2/contacts/987. Has-many relationships won’t be in the request, by default.

Requesting sideloaded or embedded records

You can include relationships by adding an include parameter to your GET request. The value of the include parameter should be in the form resource.property:mode[,resource.property:mode,...], where resource is the name of a resource, property is the name of a property of that resource, and mode is either sideload (default if the : part is omitted) or embed. You can include multiple relationships by separating them with ,.

Example: You can load invoices with its invoiceLines embedded, its contacts sideloaded, and the contact’s country embedded by doing GET /invoices?include=invoice.lines:embed,invoice.contact:sideload,contact.country:embed. The response will be something like:

{
  "invoices: [
    {
      "id": "invoice1",
      "contactId": "contact1",
      ...
      "lines": [
        {
          "id": "line1",
          ...
        },
        {
          "id": "line2",
          ...
        }
      ]
    }
  ],
  "contacts: [
    {
      "id": "contact1",
      "country": {
        "id": "DK",
        "name": "Denmark",
        ...
      },
      ...
    }
  ]
}

When sideloading belongs-to relationships, the name of the key is the singular name of the resource, suffixed with Id (like the default behavior), and each sideloaded record can be found in a root key named after the plural name of the belongs-to inverse resource. It’s recommended to sideload records instead of embedding, to avoid duplication (each belongs-to record is only included in the response once).

When embedding belongs-to relationships, the name of the key is the singular name of the resource, for example contact – and it contains all the record’s properties.

When sideloading has-many relationships, all the child IDs are included as an array of strings in the parent record, in a key named after the relationship’s name (not the inverse resource), suffixed with Ids.

When embedding has-many relationships, all the full child records are included as an array of hashes in the parent record, in a key named after the relationship’s name (not the inverse resource).

Saving embedded records

Some resources supports saving child records embedded. An example is invoices. A POST /v2/invoices‘s request body could look like this:

{
  "invoice": {
    "invoiceNo": 41,
    ...
    "lines:" [
      {
        "productId": "...",
        "unitPrice": 100,
        ...
      }
    ]
  }
}

It’s advantageous to embed records when possible, as you get fewer round trips to the API, and everything happens as an atomic transaction (either all or no records are saved).

Paging

You can limit long lists of resources using the paging URL params.

To use pages, you can use page and pageSize. For example, to get the second page containing 20 records per page, you would request GET /v2/invoices?page=2&pageSize=20.

pageSize cannot be greater than 1000 (which is also the default if pageSize is omitted).

Whether your results are truncated/paged can be found in the meta.paging key in the response. It will look something like:

{
  "meta": {
    "paging": {
      "page": 4,
      "pageCount": 9,
      "pageSize": 20,
      "total": 192,
      "firstUrl": "https://api.billyapp.com/v2/invoices?pageSize=20",
      "previousUrl": "https://api.billyapp.com/v2/invoices?page=3&pageSize=20",
      "nextUrl": "https://api.billyapp.com/v2/invoices?page=5&pageSize=20",
      "lastUrl": "https://api.billyapp.com/v2/invoices?page=9&pageSize=20"
    }
  },
  "invoices": [...]
}

Filtering

When listing most resources, you can filter the results by various properties.

Sorting

When listing most resources, you can sort the results using the sortProperty and sortDirection URL params. Each resource only allows sorting by specific properties. Those properties are noted in each resource’s documentation. The sortDirection must be either ASC (default) or DESC.

Code examples

PHP

<?php

//Define a reusable class for sending requests to the Billy API
class BillyClient {
    private $accessToken;

    public function __construct($accessToken) {
        $this->accessToken = $accessToken;
    }

    public function request($method, $url, $body = null) {
        $headers = array("X-Access-Token: " . $this->accessToken);
        $c = curl_init("https://api.billyapp.com/v2" . $url);
        curl_setopt($c, CURLOPT_CUSTOMREQUEST, $method);
        curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
        if ($body) {
            curl_setopt($c, CURLOPT_POSTFIELDS, json_encode($body));
            $headers[] = "Content-Type: application/json";
        }
        curl_setopt($c, CURLOPT_HTTPHEADER, $headers);
        $res = curl_exec($c);
        $body = json_decode($res);
        $info = curl_getinfo($c);
        return (object)array(
            'status' => $info['http_code'],
            'body' => $body
        );
    }
}

$client = new BillyClient("INSERT ACCESS TOKEN HERE");

//Get organization
$res = $client->request("GET", "/organization");
if ($res->status !== 200) {
    echo "Something went wrong:\n\n";
    print_r($res->body);
    exit;
}
$organizationId = $res->body->organization->id;

//Create a contact
$res = $client->request("POST", "/contacts", array(
    'contact' => array(
        'organizationId' => $organizationId,
        'name' => "Arnold",
        'countryId' => "DK"
    )
));
if ($res->status !== 200) {
    echo "Something went wrong:\n\n";
    print_r($res->body);
    exit;
}
$contactId = $res->body->contacts[0]->id;

//Get the contact again
$res = $client->request("GET", "/contacts/" . $contactId);
print_r($res->body);

Node.js

First run npm install async request.

var async = require('async'),
    request = require('request');

var accessToken = 'INSERT ACCESS TOKEN HERE';

//Define a reusable function to send requests to the Billy API
var billyRequest = function(method, url, body, callback) {
    body = body || {}
    request({
        url: 'https://api.billyapp.com/v2' + url,
        method: method,
        headers: {
            'X-Access-Token': accessToken,
            'Content-Type': 'application/json'
        },
        body: JSON.stringify(body)
    }, function(err, res, body) {
        if (err) {
            callback(err);
        } else {
            callback(null, {
                status: res.statusCode,
                body: JSON.parse(body)
            });
        }
    });
};

var organizationId, contactId;

async.series([
    function(callback) {
        //Get organization
        billyRequest('GET', '/user/organizations', {}, function(err, res) {
            if (err) {
                callback(err);
            } else if (res.status !== 200) {
                console.log('Something went wrong:');
                console.log(res.body);
                process.exit();
            } else {
                organizationId = res.body.organizations[0].id;
                callback();
            }
        });
    },
    function(callback) {
      //Create a contact
        billyRequest('POST', '/contacts', {
            contact: {
                organizationId: organizationId,
                name: 'Arnold',
                countryId: 'DK'
            }
        }, function(err, res) {
            if (err) {
                callback(err);
            } else if (res.status !== 200) {
                console.log('Something went wrong:');
                console.log(res.body);
                process.exit();
            } else {
                contactId = res.body.contacts[0].id;
                callback();
            }
        });
    },
    function(callback) {
      //Get the contact
        billyRequest('GET', '/contacts/' + contactId, {}, function(err, res) {
            if (err) {
                callback(err);
            } else if (res.status !== 200) {
                console.log('Something went wrong:');
                console.log(res.body);
                process.exit();
            } else {
                console.log(res.body);
                callback();
            }
        });
    }
], function(err) {
    if (err) {
        console.log(err);
    }
    process.exit();
});

Use case examples

Posting a payment for an invoice

When you want to mark an invoice as paid, you have to create a bank payment which matches the invoice’s amount. Let’s say you’ve just created an invoice with ID inv-1234, with a total amount due of $1,200. This is how you would create the payment:

POST https://api.billyapp.com/v2/bankPayments

{
    "bankPayment": {
        "organizationId": "YOUR COMPANY ID",
        "entryDate": "2014-01-16",
        "cashAmount": 1200,
        "cashSide": "debit",
        "cashAccountId": "BANK ACCOUNT ID",
        "associations": [
            {
                "subjectReference": "invoice:inv-1234"
            }
        ]
    }
}

cashAccountId is the account that an amount of cashAmount was deposited to/withdrawn from. cashSide: "debit" means a deposit (used for invoices). cashSide: "credit" means a withdrawal (used for bills).

Each item in the associations array is a balance modifier. Since payments can pay different types of models (invoices, bills, etc.), you add the invoice to the payment by using a “reference,” which is a type concatenated with a colon, concatenated with an ID; for example, invoice:inv-1234.

The payment’s currency is determined by the associations. This means that all associations must point to subjects in the same currency. That is, you can’t pay a USD invoice together with an EUR invoice. This currency is called subjectCurrency, if you GET the bank payment later from the API. If the subjectCurrency is different from the currency of cashAccount, you also need to set a cashExchangeRate. In this example, we assume that the cashAccount is in USD.

After this call, our example invoice (for $1,200) will be paid, which will be visible through the invoice’s isPaid property – which will be true – and its balance property, which will be 0.0.

The organizationId is only necessary if you are using an access token that’s tied to a user (rather than a company), or if you are using Basic Auth. You can list your user’s companies through GET /v2/user/organizations.

Posting a product with default price(s)

When POSTing to /v2/products, you can embed product prices this way:

POST https://api.billyapp.com/v2/products

{
    "product": {
        "organizationId": "YOUR ORGANIZATION ID",
        "name": "Bat capes",
        "accountId": "REVENUE ACCOUNT ID",
        "salesTaxRulesetId": "SALES TAX RULESET ID"
        "prices": [
            {
                "unitPrice": 14000,
                "currencyId": "USD"
            },
            {
                "unitPrice": 10000,
                "currencyId": "EUR"
            }
        ]
    }
}

The organizationId is only necessary if you are using an access token that’s tied to a user (rather than a company), or if you are using Basic Auth. You can list your user’s companies through GET /v2/user/organizations.

Resource Documentation

Following is an extensive list of resources you can interact with.

In addition to the standard resources, there are also a number of “special” routes by which you can interact with the resources – for example, sending an invoice as email. These are not yet documented.

Table of Contents

Resources

/v2/accountGroups

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
nature belongs-to immutable, required
name string required
description string

/v2/accountNatures

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
reportType enum
name string
normalBalance enum

/v2/accounts

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
name string required
accountNo integer
description string
group belongs-to required
nature belongs-to immutable, default: unknown
systemRole enum
currency belongs-to immutable
taxRate belongs-to
isPaymentEnabled boolean
isBankAccount boolean immutable
isArchived boolean
bankName string readonly
bankRoutingNo string readonly
bankAccountNo string readonly
bankSwift string readonly
bankIban string readonly
commentAssociations has-many Comment associations for the account. readonly

/v2/attachments

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
createdTime datetime readonly
owner belongs-to-reference immutable, required
file belongs-to The ID of the file to attach. immutable, required
priority integer

/v2/balanceModifiers

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
modifier belongs-to-reference immutable, required
subject belongs-to-reference immutable, required
amount float Balance modifier amount. readonly
entryDate date Date of balance modifier entry readonly
realizedCurrencyDifference float readonly
isVoided boolean readonly

/v2/bankLineMatches

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
account belongs-to The ID of the account to create the bank line match for. immutable, required
differenceType enum If there is a difference, this value determines its type. immutable
feeAccount belongs-to The ID of the account to add the bank fee to. immutable, required
entryDate date immutable
amount float immutable
side enum immutable
isApproved boolean Whether the bank lines and subjects are approved.
approvedTime datetime Time of approval. readonly
lines has-many Lines for this bank line match. If this parameter is set, any existing lines for this bank line match will be deleted before adding the new ones. readonly
subjectAssociations has-many Subject associations for the bank line match. If this parameter is set, any existing subject associations for this bank line match will be deleted before adding the new ones. readonly

/v2/bankLines

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
match belongs-to required
account belongs-to The ID of the account to create the bank line match for. required
entryDate date required
description string required
amount float required
side enum required

/v2/bankLineSubjectAssociations

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
match belongs-to required
subject belongs-to-reference The reference of the subject. required

/v2/bankPayments

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
contact belongs-to The contact that all of the associations‘ subjects belong to. You can omit setting this property if you supply one or more records in associations. It will then default to the contact of the associationssubject. immutable, required, default: unknown
createdTime datetime When the payment record was created in the system. readonly
entryDate date The date of the transaction. immutable, required
cashAmount float The amount that was deposited into or withdrawn from cashAccount in the account’s currency. immutable, required
cashSide enum Indicates whether the payment was a deposit (debit) or a withdrawal (credit). immutable, required
cashAccount belongs-to The account that an amount was deposited into or withdrawn from. Must have isPaymentEnabled set to true. immutable, required
cashExchangeRate float The exchange rate between subjectCurrency and cashAccount‘s currency. 1 subjectCurrency = cashExchangeRate cashAccountCurrency. Must be set if cashAccount‘s currency is different than subjectCurrency. Will be ignored and set to 1 if the currencies are the same. immutable, required, default: unknown
subjectCurrency belongs-to The currency of what was paid. You can omit setting this property if you supply one or more records in associations. It will then default to the currency of the associationssubject. In case of an overpayment, the overpaid amount will be added to the contact’s balance in this currency. immutable, required, default: unknown
feeAmount float Used if the bank or payment provider charged the organization a fee for handling this payment. The fee amount must be positive, and will always be recorded as an expense (i.e., a debit posting on an expense account). feeAmount is in the same currency as cashAccount‘s currency. The fee is always considered the organization’s expense. This means that: – For deposits the subjects’ balances will also be offset against the fee, as the customer shouldn’t pay for the organization’s payment expenses. Example: An invoice of 100 USD will be paid in full by a cashAmount of 95 and a feeAmount of 5. – For withdrawals the subject’s balances will not be offset against the fee, as the supplier shouldn’t pay for the organization’s payment expenses. Example: A bill of 100 USD will be paid in full by a cashAmount of 105 and a feeAmount of 5. immutable
feeAccount belongs-to The account to record the fee expense on. Must be an expense account. Must be set if feeAmount is set. immutable, required
isVoided boolean Indicates if the payment has been canceled. You must leave this field blank or set to false for new payments. Once a payment has been canceled by setting this field to true it can’t be reinstated (“un-canceled”).
associations has-many The subjects this payment involves. The subjects’ outstanding balance and isPaid properties will automatically be updated by the API. immutable
contactBalancePostings has-many readonly
commentAssociations has-many Comment associations for the payment. readonly

/v2/billLines

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
bill belongs-to immutable, required
account belongs-to required
taxRate belongs-to
description string required
amount float required
tax float readonly
priority integer

/v2/bills

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
type enum immutable
createdTime datetime readonly
approvedTime datetime readonly
contact belongs-to immutable, required
contactName string
entryDate date required
paymentAccount belongs-to immutable
paymentDate date immutable, required
dueDate date
isBare boolean
state enum default: "draft"
suppliersInvoiceNo string
taxMode enum
voucherNo string Voucher number for the bill
amount float readonly
tax float readonly
currency belongs-to
exchangeRate float
balance float readonly
isPaid boolean readonly
lineDescription string readonly
creditedBill belongs-to immutable
creditNotes has-many readonly
lines has-many
attachments has-many
balanceModifiers has-many Payment associations for the bill. readonly
commentAssociations has-many Comment associations for the bill. readonly
source string Source of the bill. readonly
subject string Original subject of the bill. readonly

/v2/cities

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
name string
county string
state belongs-to
country belongs-to

/v2/commentAssociations

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
comment belongs-to Comment to associate the record with. immutable, required
owner belongs-to-reference Record to associate the comment with. immutable, required

/v2/comments

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
createdTime datetime readonly
authorUser belongs-to
isSystemComment boolean readonly
message string required
associations has-many immutable, required

/v2/contactBalancePayments

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
contact belongs-to Automatically set by the API. The contact that all of the associations‘ subjects belong to. immutable, required, default: unknown
createdTime datetime readonly
entryDate date The date that this transaction occurred accounting-wise. immutable, required
amount float The amount to apply to the subject(s) balance. immutable, required
side enum Automatically set by the API. Indicates: – debit: The payment used a prepayment that a customer made to the company. – credit: The payment used a prepayment that the company made to a vendor. immutable, required, default: unknown
currency belongs-to Automatically set by the API to the currency of the subject(s). immutable, required, default: unknown
isVoided boolean
associations has-many The subjects this payment involves. The subjects’ outstanding balance and isPaid properties will automatically be updated by the API. immutable, required

/v2/contactBalancePostings

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
contact belongs-to readonly
originator belongs-to-reference readonly
createdTime datetime readonly
entryDate date readonly
amount float readonly
side enum readonly
currency belongs-to readonly
isVoided boolean readonly

/v2/contactPersons

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
contact belongs-to immutable, required
isPrimary boolean If contact person is primary for the parent contact.
name string The name of the contact person. Either name or email must be set. required
email string The contact person’s e-mail. Used to mail invoices to the contact. Either name or email must be set.

/v2/contacts

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
type enum Whether contact is a company or an individual. Defaults to company required, default: "company"
organization belongs-to immutable, required
createdTime datetime readonly
name string The name of the contact. Can be either a company name or a person’s name. required
country belongs-to The contact’s home/business country. required
street string The contact’s street address.
city belongs-to The contact’s city, if finite.
cityText string The contact’s city, in text form.
state belongs-to The name of the contact’s state, if finite.
stateText string The name of the contact’s state, in text form.
zipcode belongs-to The contact’s zipcode, if finite.
zipcodeText string The contact’s zipcode, in text form.
contactNo string Arbitrary number (or string) that contacts can be referred to by.
phone string The contact’s phone number.
fax string The contact’s fax number.
currency belongs-to Default currency to use for invoices created for the contact. Has no effect in the API, as currency for invoice always is required.
registrationNo string The contact’s EU VAT number, CVR number in Denmark, tax ID (TIN/EIN/SSN) in the US.
ean string The contact’s EAN (European Article Number).
locale belongs-to Language to use in communications with the contact. The language also decides which language should be used on invoices created for the contact.
isCustomer boolean Whether the contact is regarded as a customer and can have invoices, etc.
isSupplier boolean Whether the contact is regarded as a vendor and can have bills etc.
paymentTermsMode enum
paymentTermsDays integer required
contactPersons has-many You can add one or more contact persons for the contact. If this parameter is set, any existing contact persons for this contact will be deleted before adding the new ones.
commentAssociations has-many Comment associations for the contact. readonly
accessCode string Used to generate the contact’s customer portal URL.
emailAttachmentDeliveryMode enum Whether to deliver attachments by link to customer portal or with email attachments.
isArchived boolean Whether the contact is archived.

/v2/countryGroups

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
name string
icon string
memberCountryIds string

/v2/countries

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
name string
hasStates boolean
hasFiniteStates boolean
hasFiniteZipcodes boolean
icon string
locale belongs-to

/v2/currencies

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
name string
exchangeRate float

/v2/daybookBalanceAccounts

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
daybook belongs-to required
account belongs-to required
priority integer required

/v2/daybooks

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
isTransactionSummaryEnabled boolean required
name string The name of the daybook. required
defaultContraAccount belongs-to
balanceAccounts has-many Balance accounts to monitor.

/v2/daybookTransactionLines

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
daybookTransaction belongs-to immutable, required
text string Line description.
account belongs-to @[email protected] of account line is to be applied to. Either @[email protected] or @[email protected] must be filled in. immutable, required
taxRate belongs-to immutable
contraAccount belongs-to @[email protected] of account line is to be applied against. immutable
amount float Amount of line. immutable, required
side enum “debit” or “credit” immutable, required
currency belongs-to immutable, default: unknown
priority integer

/v2/daybookTransactions

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
daybook belongs-to
createdTime datetime readonly
entryDate date The transaction entry date in YYYY-MM-DD format. immutable, required
voucherNo string A number or a string that identifies this transaction’s voucher number, e.g. a bill.
description string Description of transaction.
extendedDescription string Extended/verbose description of transaction.
apiType string Method used to make the API call. This is for your notation only.
state enum default: "draft"
priority integer
lines has-many Lines for the transaction. At minimum one line must be supplied. immutable
attachments has-many Attachments for the daybook transaction. immutable

/v2/files

Supports: get by id, list, create, bulk save, bulk delete

Property Type Description Notes
createdTime datetime readonly
fileName string readonly
fileSize integer readonly
fileType string readonly
isImage boolean readonly
isPdf boolean readonly
imageWidth integer readonly
imageHeight integer readonly
downloadUrl string readonly

/v2/invoiceBankAccountMappings

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
currency belongs-to required
account belongs-to required

/v2/invoiceLateFees

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
invoice belongs-to immutable, required
createdTime datetime readonly
entryDate date immutable, required
flatFee float immutable, required
percentageFee float immutable, required
amount float readonly
isVoided boolean

/v2/invoiceLines

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
invoice belongs-to immutable, required
product belongs-to The product to use for the line. required
description string Optional description to display under the product’s name on the invoice.
quantity float The line’s quantity. default: 1
unitPrice float The price per unit of the product. required
amount float readonly
tax float readonly
taxRate belongs-to readonly
discountText string Text to display if the line includes a discount.
discountMode enum How the discount should be calculated. Cash discount: The value of @[email protected] will be subtracted from the line’s amount. Percentage discount: The percentage value of @[email protected] will be subtracted from the line’s amount.
discountValue float Depending on @[email protected], either an amount or a percentage value. Percentage value should be supplied as e.g. 25 for 25%. Required if @[email protected] is set. ignored if @[email protected] is not set.
priority integer

/v2/invoiceReminderAssociations

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
reminder belongs-to required
invoice belongs-to required
lateFee belongs-to readonly

/v2/invoiceReminders

Supports: get by id, list, create, bulk save, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
contact belongs-to required
createdTime datetime readonly
associations has-many
flatFee float
percentageFee float
feeCurrency belongs-to required
sendEmail boolean
contactPerson belongs-to required
emailSubject string required
emailBody string required
copyToUser belongs-to
downloadUrl string

/v2/invoices

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
type enum Whether to create an invoice or a credit note. Defaults to @[email protected] immutable
createdTime datetime readonly
approvedTime datetime readonly
contact belongs-to The ID of the contact to create the invoice for. immutable, required
attContactPerson belongs-to ID for a contact person belonging to the contact that should be included as Att: in the invoice address area.
entryDate date The invoice date. This parameter must not be set if the invoice has already been created. required
paymentTermsMode enum default: unknown
paymentTermsDays integer Number of days (positive or negative) for the mode defined by paymentTermsMode required
dueDate date The due date for payment of the invoice. readonly
state enum Used to change the state of the invoice. Currently the only state change possible is from draft to approved. Once an invoice has been approved, its state can’t be changed. Omit from request body if state shouldn’t be changed. required, default: "draft"
sentState enum Sent state of the email. Invoice is marked as unsent by default, can be marked as printed, sent, opened, viewed. required, default: "unsent"
invoiceNo string Manually set the invoice number. Invoice numbers has to be unique. If no invoice number is set when the invoice is created, it will automatically be assigned a number using the company’s invoice number model. This parameter must not be set if the invoice has already been created. immutable, required
taxMode enum
amount float readonly
tax float readonly
currency belongs-to The currency of the invoice. All lines’ @[email protected] parameters should be in this currency. required, default: unknown
exchangeRate float The exchange rate used for invoices in foreign currencies. The value should calculated like this: bq. @[email protected] = @[email protected] / @organization’s base [email protected] If this field is left blank, then today’s exchange rate will automatically be used. If @[email protected] equals the organization’s base currency, the value of this field is ignored – it will always be 1.
balance float readonly
isPaid boolean readonly
creditedInvoice belongs-to immutable
contactMessage string Optional message to the contact, to be displayed at the top of the invoice PDF.
lineDescription string Automatically generated based on its lines’ descriptions.
downloadUrl string
lines has-many Lines for the invoice. At minimum, one line must be supplied. If this parameter is set, any existing lines for this invoice will be deleted before adding the new ones. This parameter must not be set if the invoice has already been created. required
attachments has-many Attachments for the invoice.
lateFees has-many readonly
balanceModifiers has-many Payment associations for the invoice. readonly
commentAssociations has-many Comment associations for the invoice. readonly

/v2/locales

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
name string
icon string

/v2/organizationInvitations

Supports: get by id, list, create, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
invitedByUser belongs-to Inviting user readonly
email string Email address of user being invited. required
type enum required
createdTime datetime readonly

/v2/organizations

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
ownerUser belongs-to required
createdTime datetime When the organization was created readonly
name string required
url string readonly
street string
zipcode string
city string
country belongs-to immutable, required
phone string
fax string
email string
registrationNo string
baseCurrency belongs-to immutable, required
logoFile belongs-to Organization logo.
logoPdfFile belongs-to Logo file to be used with PDFs. readonly
logoUrl string Full-size logo URL readonly
iconFile belongs-to Organization icon.
iconUrl string Full-size icon URL readonly
icon48Url string 48x48 pixels icon URL readonly
fiscalYearEndMonth integer required
firstFiscalYearStart date required
firstFiscalYearEnd date required
hasBillVoucherNo boolean Whether or not the company has a bill voucher number
subscriptionCardType string
subscriptionCardNumber string
subscriptionCardExpires date
subscriptionTransaction belongs-to The transaction for the company’s recurring subscription.
isSubscriptionBankPayer boolean
subscriptionPrice float
subscriptionPeriod enum required, default: "monthly"
subscriptionDiscount float readonly
subscriptionExpires date
isTrial boolean readonly
isTerminated boolean
terminationTime datetime When the company was terminated readonly
locale belongs-to The organization’s default language. Will be used for all contacts unless overridden on a contact level. required
billEmailAddress string An email can be sent to this address and its attachments will be processed into bills readonly
isUnmigrated boolean If this is true, the company has not yet migrated to our new system. readonly
isLocked boolean If this is true, the company is locked. readonly
lockedCode enum readonly
lockedReason string Reason the company is currently locked. readonly
appUrl string readonly
emailAttachmentDeliveryMode enum Whether to deliver attachments by link to customer portal, or with email attachments. required
hasVat boolean
vatPeriod enum required
defaultInvoiceBankAccount belongs-to
invoiceNoMode enum required
nextInvoiceNo integer required
paymentTermsMode enum required
paymentTermsDays integer required
invoiceBankAccountMappings has-many
defaultSalesAccount belongs-to
defaultSalesTaxRuleset belongs-to
bankSyncStartDate date
defaultBankFeeAccount belongs-to
defaultBillBankAccount belongs-to

/v2/organizationTemplates

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
locale belongs-to immutable, required
invoiceDocumentPreText string Text to prepend to the beginning of invoices
invoiceDocumentPostText string Text to append to the end of invoices
invoiceEmailSubject string Default email subject for invoices required, default: unknown
invoiceEmailBody string Default email body for invoices required, default: unknown
invoiceReminderEmailSubject string Default email subject for invoice reminders required, default: unknown
invoiceReminderEmailBody string Default email body for invoice reminders required, default: unknown

/v2/organizationUserAccesses

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
user belongs-to immutable, required

/v2/postings

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
transaction belongs-to readonly
entryDate date readonly
text string readonly
account belongs-to readonly
amount float readonly
side enum readonly
currency belongs-to readonly
vatReturn belongs-to readonly
isVoided boolean readonly
isBankMatched boolean readonly
priority integer readonly

/v2/productPrices

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
product belongs-to immutable, required
unitPrice float Currency for the unit price. required
currency belongs-to The default unit price for invoice lines when the invoice’s currency matches this currency. required

/v2/products

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
name string The name of the product. required
description string Optional description that will be used as default on invoice lines with this product.
account belongs-to The account that sales of the product should be coded to. required, default: unknown
productNo string A number (or string) that the organization identifies the product by.
suppliersProductNo string A number (or string) that the organization’s supplier identifies the product by.
salesTaxRuleset belongs-to default: unknown
isArchived boolean
prices has-many The product can have a unit price for each of the organization’s currencies.

/v2/reportLayouts

Supports: get by id, list, update, bulk save, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
type enum immutable
items json

/v2/salesTaxRules

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
ruleset belongs-to immutable, required
country belongs-to immutable, required
state belongs-to immutable
countryGroup belongs-to immutable
contactType enum immutable
taxRate belongs-to immutable
priority integer immutable

/v2/salesTaxRulesets

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
name string immutable, required
abbreviation string immutable
description string immutable
fallbackTaxRate belongs-to immutable
isPredefined boolean readonly
rules has-many immutable

/v2/states

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
stateCode string
name string
country belongs-to

/v2/taxRateDeductionComponents

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
taxRate belongs-to immutable, required
share float immutable, required
source enum immutable, required
account belongs-to immutable, required
priority integer

/v2/taxRates

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
name string immutable, required
abbreviation string immutable
description string immutable
rate float immutable, required
appliesToSales boolean immutable
appliesToPurchases boolean immutable
isPredefined boolean readonly
isActive boolean
netAmountMetaField belongs-to immutable
deductionComponents has-many immutable

/v2/transactions

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
transactionNo integer readonly
voucherNo string readonly
createdTime datetime readonly
entryDate date readonly
originator belongs-to-reference readonly
originatorName string readonly
isVoided boolean readonly
isVoid boolean readonly
postings has-many readonly
commentAssociations has-many Comment associations for the transaction. readonly

/v2/users

Supports: get by id, list, update, bulk save, bulk delete

Property Type Description Notes
createdTime datetime Date/time user was created readonly
name string User’s full name. required
email string User’s email address. required
phone string User’s phone number.
profilePicFile belongs-to Profile picture of user. readonly
profilePicUrl string readonly
profilePic48Url string readonly
isStaff boolean Whether or not the user is a member of the Billy staff.
isSupporter boolean Whether or not the user is a Billy supporter.
isAdmin boolean Whether or not the user is a Billy admin.
isSupportAccessAllowed boolean Whether or not the user chooses to allow supporter access.

/v2/vatFields

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
account belongs-to required
type enum required
priority integer

/v2/vatMetaFields

Supports: get by id, list, create, update, bulk save, delete, bulk delete

Property Type Description Notes
organization belongs-to immutable, required
name string required
description string
priority integer
isPredefined boolean

/v2/vatReturnPayments

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
vatReturn belongs-to immutable, required
entryDate date immutable, required
account belongs-to immutable, required
amount float readonly
side enum readonly
isVoided boolean

/v2/vatReturns

Supports: get by id, list, update, bulk save, bulk delete

Property Type Description Notes
organization belongs-to readonly
createdTime datetime readonly
periodType enum readonly
period string readonly
periodText string
correctionNo integer readonly
startDate date readonly
endDate date readonly
reportDeadline date
isSettled boolean
isPaid boolean readonly

/v2/zipcodes

Supports: get by id, list, create, update, bulk save, bulk delete

Property Type Description Notes
zipcode string
city belongs-to
state belongs-to
country belongs-to
latitude float
longitude