Rest API V1 Documentation

tracezilla has an open Rest API that can be used for things like accounting system integration

Example: Request for pending invoices

1
2
3
4
curl -X 'GET' \
  'https://app.tracezilla.com/api/v1/example-company/invoices?booked_status%5Beq%5D=pending' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer {yourBearerToken}'

Example: Response for pending invoices

1
2
3
4
5
6
7
8
9
10
11
12
{
  "data": [
    {
      "id": "be3233c4-c0a2-4f47-a62a-303492c20ba6",
      "credit_note_id": "be3233c4-c0a2-4f47-a62a-303492c20ba6",
      "currency": "DKK",
      "invoice_sub_total": 1234.123,
      "invoice_vats_total": 1234.123,
      "invoice_total": 1234.123,
      "cogs_actual_total": 1234.123,
      "cogs_budget_total": 1234.123,
      ...

I have a tracezilla login

Swagger API documentation can be accessed after logging in.

Get started with login


I’m not logged in

You can still read API documentation here.

Get started without login


Wondering how to grant access to partners?

You can contact tracezilla support if business partners like external developers needs access.

Support can grant access to external consultants. They can help you in Danish, Swedish and English.

Contact tracezilla support


Table of contents