v1

latestOpenAPI 3.0.32026-07-268955212.1 KB
credit-notes

List credit notes

Returns a list of credit notes for the company.

Scope: credit-notes:read

get/companies/{companyId}/credit-notes

Query parameters

pageinteger

Page number for pagination

pageSizeinteger

Number of items per page

querystring

Optional query to filter the data set with supported fields listed below and available operations. View documentation for filtering on metatdata here.

FieldType
typestring
customerRefstring
orderNumberReferencestring
projectReferencestring
buyerReferencestring
contractReferencestring
currencystring
totalAmountnumber
statusstring
invoiceDatedate
dueDatedate
metadatastring

Response

List of credit notes

totalItemsinteger
totalPagesinteger
currentPageinteger

Example response

{
  "totalItems": 1,
  "totalPages": 1,
  "currentPage": 1,
  "items": [
    {
      "id": "b529df79-eb7f-5ef0-a8dc-c2b71f953554",
      "status": "published",
      "invoiceNumber": "CN-2024-001",
      "invoiceRef": {
        "id": "a419cf69-db6f-4de9-992c-b1a60942a443",
        "invoiceNumber": "IN-2024-001"
      },
      "customerRef": {
        "id": "55c899c5-82b2-47fa-9c51-e35fc9b26443",
        "name": "customer 1"
      },
      "contactDetailRef": {
        "id": "d3b07384-d9a0-4c9b-8b3a-6e1f2a5c8d4e",
        "email": "contact@customer1.com",
        "phone": "+46701234567"
      },
      "currency": "SEK",
      "currencyRate": 1,
      "totalAmount": 200,
      "totalTax": 50,
      "paidAmount": 0,
      "creditDate": "2024-10-15",
      "dueDate": "2024-11-15",
      "publishedDateTime": "2024-10-15T12:00:00",
      "projectReference": "PROJ-001",
      "buyerReference": "BUYER-123",
      "contractReference": "CONTRACT-456",
      "lineItems": [
        {
          "id": 1,
          "itemRef": {
            "id": "55c899c5-82b2-47fa-9c51-e35fc9b26443",
            "description": "Product 1"
          },
          "description": "Product 1",
          "itemType": "salesItem",
          "productType": "goods",
          "quantity": 2,
          "unitPrice": 100,
          "taxRate": 25
        }
      ],
      "billingAddress": {
        "line1": "Älvsborgsvägen 10",
        "line2": null,
        "city": "Göteborg",
        "postalCode": "123 45",
        "country": "SE"
      },
      "deliveryAddress": {
        "line1": "Delivery Street 15",
        "line2": "Floor 2",
        "city": "Stockholm",
        "postalCode": "111 11",
        "country": "SE"
      },
      "attachmentRefs": [
        {
          "id": "240a4af0-edfd-47b1-b4ab-f30450eaac19",
          "fileName": "myfile.pdf"
        },
        {
          "id": "94a8f806-8493-40f6-9d5b-0495c84f8ab9",
          "fileName": "myfile2.pdf"
        }
      ],
      "journalEntryRef": {
        "id": "340a4af0-edfd-47b1-b4ab-f30450eaac19"
      },
      "metadata": {
        "project": "Website Redesign",
        "department": "IT",
        "externalId": "EXT-INV-2024-001"
      }
    }
  ]
}