Resources

GET
/api/v2/invoices/:id
Show an invoice

Examples

GET /api/v2/invoices/10
200
{
  "data": {
    "id": 10,
    "number": 1,
    "date": "2021-01-25",
    "client_id": 9,
    "days": 30,
    "our_reference": "",
    "your_reference": "",
    "sent": false,
    "paid_at": null,
    "locale": "sv",
    "currency": "SEK",
    "settings": {
      "invoice_template": "croatia",
      "prices_inc_tax": "no",
      "show_product_code": false
    },
    "sum": "1250.0",
    "net": "1000.0",
    "tax": "250.0",
    "tax_details": {
      "25": "250.0"
    },
    "address": {
      "name": "Google Inc",
      "street_address": "1600 Amphitheatre Parkway",
      "care_of": "",
      "zip_code": "940 43",
      "city": "Mountain View",
      "country": "SE"
    },
    "rows": [
      {
        "id": 13,
        "product_id": 0,
        "discount": 0,
        "amount": "5.0",
        "text": "",
        "product_code": null,
        "product_name": "product",
        "product_unit": "st",
        "product_price": "200.0",
        "product_tax": 25,
        "text_row": false,
        "sort_order": 0,
        "tax_deductible": false
      }
    ]
  }
}