LedgerBee Developer
  • Getting started
  • Conventions
  • Products
  • Configuration
  • API Reference
Information
Accounts
    List accountsget
API Key
    Get current API keyget
Company
    Get company detailsget
Credit Notes
    List credit notesgetCreate a credit notepostGet a credit notegetGet the delivery status of a credit notegetDownload the credit note PDFgetSend a credit note to the customerpost
Customers
    List customersgetCreate a customerpostGet a customergetUpdate a customerpatchList a customer's contactsgetList a customer's departmentsgetList customer groupsget
Dimensions
    List all dimensionsgetCreate a new dimension categorypostGet a dimensiongetUpdate a dimension categoryputDelete a dimension categorydeleteCreate a new dimension valuepostUpdate a dimension valueputDelete a dimension valuedelete
Document Templates
    List document templatesget
Draft Journal Entries
    Create multiple draft journal entries in batchpostList draft journal entriesgetCreate a draft journal entrypostGet a draft journal entrygetDelete a draft journal entrydeleteBook a draft journal entrypost
Draft Journal Entries (v2)
    Create draft journal entries in batch (v2)postList draft journal entries (v2)getCreate a draft journal entry (v2)postGet a draft journal entry (v2)getDelete a draft journal entry (v2)deleteUpdate a draft journal entry (v2)patchBook a draft journal entry (v2)post
Entitlements
    List entitlementsgetCreate an entitlementpostGet an entitlementgetDelete an entitlementdeleteUpdate an entitlementpatch
Invoices
    List invoicesgetCreate a draft invoicepostGet an invoicegetGet the delivery status of an invoicegetDownload the invoice PDFgetSend an invoice to the customerpost
Journal Categories
    List journal categoriesget
Journal Entries
    Create multiple journal entries in batchpostList journal entriesgetCreate a journal entrypostGet a journal entrygetUpdate a journal entry — correct the reference and/or set your external system idpatchGet attachments for a journal entrygetReverse posted journal entries in batchpostReverse a posted journal entrypost
Journal Entries (v2)
    Create a journal entry (v2)postCreate journal entries in batch (v2)post
MCP
    LedgerBee Developer MCP Serverpost
Meters
    List meter subscriptions by IDgetReport usagepostList meter subscriptions by nameget
Order Confirmations
    List order confirmationsgetCreate a draft order confirmationpostGet an order confirmationgetUpdate a draft order confirmationpatchConvert an order confirmation into an invoicepostDownload an order confirmation as PDFgetSend an order confirmationpost
Payment Methods
    List saved payment methods for a customergetCancel a saved card on the payment providerdeleteUnassign a payment method from a customerdeleteGenerate a link for the customer to save a card for future paymentspostSet a saved payment method as the customer defaultput
Portal Plans
    List the full plan cataloguegetGet a plangetResolve the gated pricing catalogue for an identified buyer (partner display)post
Portal SSO
    Get a tenant's SSO signing keys (JWKS)getMint a customer-portal SSO handoff referencepostProvision a customer + grant portal access (partner JIT provisioning)postRevoke (force-refresh) a user's customer-portal sessionspost
Product Groups
    List product groupsgetCreate a product grouppostGet a product groupgetDelete a product groupdeleteUpdate a product grouppatch
Product Prices
    Create a product pricepostGet a product pricegetDelete a product pricedeleteUpdate a product pricepatchActivate a product pricepostArchive a product pricepostDisable a product pricepostSet a price as the product defaultpost
Products
    List productsgetCreate a productpostGet a productgetDelete a productdeleteUpdate a productpatch
Projects
    List all projectsgetCreate or update a project by external referenceputCreate a projectpostGet a projectgetUpdate a projectputGet project profitgetAdd a subprojectpostUpdate a subprojectputDelete a subprojectdelete
Quotes
    List quotesgetCreate a draft quotepostGet a quotegetUpdate a draft quotepatchConvert a quotepostDownload a quote as PDFgetSend a quotepost
Subscriptions
    List customer subscriptionsgetAssign a subscription to a customerpostGet a customer subscription by its stable idgetUpdate a customer subscriptionpatchRetry a failed card paymentpostList a subscription's pending scheduled changesgetCancel a single pending scheduled changedeleteCancel a customer subscriptionpostList subscription plansgetCreate a subscription planpostArchive a subscription planpost
Suppliers
    List suppliersgetCreate a supplierpostList supplier contactsgetList supplier departmentsgetList supplier groupsget
VAT Codes
    List VAT codesget
Vendors
    List vendorsgetCreate a vendorpostList vendor contactsgetList vendor departmentsgetList vendor groupsget
Webhook Endpoints
    List webhook endpointsgetCreate a webhook endpointpostRetrieve a webhook endpointgetUpdate a webhook endpointputDelete a webhook endpointdeleteRoll the signing secretpostSend a test eventpost
Schemas
LedgerBee Public API
LedgerBee Public API

Credit Notes

Download schema

List credit notes

GET
https://api.ledgerbee.com/api
/v1/credit-notes
x-api-key (header)
or
OAuth 2.0

Returns a paginated list of credit notes for your company, optionally filtered by status and customer.

Required Scope

  • invoices-read

List credit notes › query Parameters

page
​number · min: 1

Page number (1-indexed)

Example: 1
Default: 1
limit
​number · min: 1 · max: 100

Number of items per page

Example: 25
Default: 25
search
​string

Free-text search (credit note number, description)

status
​string · enum

Filter credit notes by status

Enum values:
draft
scheduled
sending
sent
customerId
​string

Filter credit notes for a specific customer

Example: 0197A943-2325-7829-B835-B6C71A293065

List credit notes › Responses

Paginated list of credit notes

PublicListCreditNotesResponse
​PublicCreditNoteListItem[] · required

Credit notes on this page (line items omitted; GET one for lines)

total
​number · required

Total credit notes matching the query

Example: 42
page
​number · required

Current page (1-indexed)

Example: 1
limit
​number · required

Items per page

Example: 25
totalPages
​number · required

Total pages

Example: 2
GET/v1/credit-notes
curl https://api.ledgerbee.com/api/v1/credit-notes \ --header 'x-api-key: <api-key>'
Example Responses
{ "data": [ { "id": "0197A943-2325-7829-B835-B6C71A293065", "number": "1", "invoiceNumber": "invoiceNumber", "status": "sent", "date": "2024-01-15", "customerId": "customerId", "currency": "DKK", "subtotal": "2166.65", "vat": "541.66", "amount": "2708.31", "reference": "reference", "ourReference": "ourReference", "notes": "notes", "createdAt": "2024-01-15T10:30:00.000Z", "updatedAt": "2024-01-15T10:30:00.000Z" } ], "total": 42, "page": 1, "limit": 25, "totalPages": 2 }
json
application/json

Create a credit note

POST
https://api.ledgerbee.com/api
/v1/credit-notes
x-api-key (header)
or
OAuth 2.0

Creates a credit note. Pass invoiceNumber to credit an existing invoice; the referenced invoice is then marked credited.

Required Scope

  • invoices-write

Create a credit note › Headers

x-api-idempotency-key
​string · maxLength: 255

Optional idempotency key for safely retrying mutating requests.

Create a credit note › Request Body

PublicCreateCreditNote
customerId
​string · required

Customer ID this credit note is for

Example: 0197A943-2325-7829-B835-B6C71A293065
date
​string · required

Credit note date (ISO date, YYYY-MM-DD)

Example: 2024-01-15
​PublicCreateCreditNoteLine[] · required

Credit note lines

customerDepartmentId
​string

Customer department ID (for EAN-based e-invoicing and address override)

Example: 0197A943-2325-7829-B835-B6C71A293065
customerContactId
​string

Customer contact ID (credit note recipient)

Example: 0197A943-2325-7829-B835-B6C71A293065
invoiceNumber
​string

Original invoice number this credit note credits. When set, the referenced invoice is marked credited.

Example: 1
currency
​string · minLength: 3 · maxLength: 3

Currency code (ISO 4217). Defaults to the company default currency.

Example: DKK
reference
​string

Reference / PO number ("PO-nr.")

Example: PO-12345
ourReference
​string

Our reference ("Vores ref.")

Example: Jane Doe
description
​string

Optional description of the credit note

Example: Credit for returned items
notes
​string

Additional notes or comments

Example: Credit issued due to product defect

Create a credit note › Responses

Credit note created successfully

PublicCreditNote
id
​string · required

Credit note ID

Example: 0197A943-2325-7829-B835-B6C71A293065
number
​string · required

Credit note number

Example: 1
status
​string · enum · required

Credit note status

Enum values:
draft
scheduled
sending
sent
Example: sent
date
​string · required

Credit note date (ISO date)

Example: 2024-01-15
currency
​string · required

Currency code (ISO 4217)

Example: DKK
subtotal
​string · required

Subtotal before VAT (decimal string)

Example: 2166.65
vat
​string · required

VAT amount (decimal string)

Example: 541.66
amount
​string · required

Total amount including VAT (decimal string)

Example: 2708.31
​PublicCreditNoteLine[] · required

Credit note lines

createdAt
​string · required

Creation timestamp (ISO)

Example: 2024-01-15T10:30:00.000Z
updatedAt
​string · required

Last update timestamp (ISO)

Example: 2024-01-15T10:30:00.000Z
invoiceNumber
​string | null

Original invoice number this credit note credits

customerId
​string | null

Customer ID

reference
​string | null

Reference / PO number

ourReference
​string | null

Our reference ("Vores ref.")

notes
​string | null

Additional notes

POST/v1/credit-notes
curl https://api.ledgerbee.com/api/v1/credit-notes \ --request POST \ --header 'Content-Type: application/json' \ --header 'x-api-key: <api-key>' \ --data '{ "customerId": "0197A943-2325-7829-B835-B6C71A293065", "customerDepartmentId": "0197A943-2325-7829-B835-B6C71A293065", "customerContactId": "0197A943-2325-7829-B835-B6C71A293065", "invoiceNumber": "1", "date": "2024-01-15", "currency": "DKK", "reference": "PO-12345", "ourReference": "Jane Doe", "description": "Credit for returned items", "notes": "Credit issued due to product defect", "lines": [ { "priceId": "0197A943-2325-7829-B835-B6C71A293065", "lineType": "subscription", "description": "Premium widget - Blue color - Return", "quantity": 2, "unitPrice": "1083.32" } ] }'
Example Request Body
{ "customerId": "0197A943-2325-7829-B835-B6C71A293065", "customerDepartmentId": "0197A943-2325-7829-B835-B6C71A293065", "customerContactId": "0197A943-2325-7829-B835-B6C71A293065", "invoiceNumber": "1", "date": "2024-01-15", "currency": "DKK", "reference": "PO-12345", "ourReference": "Jane Doe", "description": "Credit for returned items", "notes": "Credit issued due to product defect", "lines": [ { "priceId": "0197A943-2325-7829-B835-B6C71A293065", "lineType": "subscription", "description": "Premium widget - Blue color - Return", "quantity": 2, "unitPrice": "1083.32" } ] }
json
application/json
Example Responses
{ "id": "0197A943-2325-7829-B835-B6C71A293065", "number": "1", "invoiceNumber": "invoiceNumber", "status": "sent", "date": "2024-01-15", "customerId": "customerId", "currency": "DKK", "subtotal": "2166.65", "vat": "541.66", "amount": "2708.31", "reference": "reference", "ourReference": "ourReference", "notes": "notes", "lines": [ { "id": "0197A943-2325-7829-B835-B6C71A293065", "priceId": "priceId", "description": "description", "lineType": "subscription", "quantity": 2, "unitPrice": "1083.32", "totalPrice": "2166.65", "vatAmount": "vatAmount", "vatRate": "vatRate" } ], "createdAt": "2024-01-15T10:30:00.000Z", "updatedAt": "2024-01-15T10:30:00.000Z" }
json
application/json

Get a credit note

GET
https://api.ledgerbee.com/api
/v1/credit-notes/{id}
x-api-key (header)
or
OAuth 2.0

Retrieves a single credit note by its unique identifier. Returns 404 when the credit note does not exist in your company. For the rendered document, use the PDF endpoint.

Required Scope

  • invoices-read

Get a credit note › path Parameters

id
​string · required

Credit Note ID

Get a credit note › Responses

The credit note

PublicCreditNote
id
​string · required

Credit note ID

Example: 0197A943-2325-7829-B835-B6C71A293065
number
​string · required

Credit note number

Example: 1
status
​string · enum · required

Credit note status

Enum values:
draft
scheduled
sending
sent
Example: sent
date
​string · required

Credit note date (ISO date)

Example: 2024-01-15
currency
​string · required

Currency code (ISO 4217)

Example: DKK
subtotal
​string · required

Subtotal before VAT (decimal string)

Example: 2166.65
vat
​string · required

VAT amount (decimal string)

Example: 541.66
amount
​string · required

Total amount including VAT (decimal string)

Example: 2708.31
​PublicCreditNoteLine[] · required

Credit note lines

createdAt
​string · required

Creation timestamp (ISO)

Example: 2024-01-15T10:30:00.000Z
updatedAt
​string · required

Last update timestamp (ISO)

Example: 2024-01-15T10:30:00.000Z
invoiceNumber
​string | null

Original invoice number this credit note credits

customerId
​string | null

Customer ID

reference
​string | null

Reference / PO number

ourReference
​string | null

Our reference ("Vores ref.")

notes
​string | null

Additional notes

GET/v1/credit-notes/{id}
curl https://api.ledgerbee.com/api/v1/credit-notes/:id \ --header 'x-api-key: <api-key>'
Example Responses
{ "id": "0197A943-2325-7829-B835-B6C71A293065", "number": "1", "invoiceNumber": "invoiceNumber", "status": "sent", "date": "2024-01-15", "customerId": "customerId", "currency": "DKK", "subtotal": "2166.65", "vat": "541.66", "amount": "2708.31", "reference": "reference", "ourReference": "ourReference", "notes": "notes", "lines": [ { "id": "0197A943-2325-7829-B835-B6C71A293065", "priceId": "priceId", "description": "description", "lineType": "subscription", "quantity": 2, "unitPrice": "1083.32", "totalPrice": "2166.65", "vatAmount": "vatAmount", "vatRate": "vatRate" } ], "createdAt": "2024-01-15T10:30:00.000Z", "updatedAt": "2024-01-15T10:30:00.000Z" }
json
application/json

Get the delivery status of a credit note

GET
https://api.ledgerbee.com/api
/v1/credit-notes/{id}/delivery-status
x-api-key (header)
or
OAuth 2.0

Returns an aggregate send summary plus a per-attempt delivery log for the credit note.

Required Scope

  • invoices-read

Get the delivery status of a credit note › path Parameters

id
​string · required

Credit Note ID

Get the delivery status of a credit note › Responses

Delivery status

PublicDeliveryStatusResponse
​object · required

Aggregate send summary

​PublicDeliveryLogEntry[] · required

Per-attempt delivery log entries

GET/v1/credit-notes/{id}/delivery-status
curl https://api.ledgerbee.com/api/v1/credit-notes/:id/delivery-status \ --header 'x-api-key: <api-key>'
Example Responses
{ "summary": { "sendCount": 2, "lastDeliveryType": "Email", "lastRecipientEmail": "lastRecipientEmail", "lastRecipientEan": "lastRecipientEan", "lastSentAt": "lastSentAt" }, "entries": [ { "id": "id", "status": "success", "deliveryType": "Email", "recipientEmail": "recipientEmail", "recipientEan": "recipientEan", "sentAt": "2024-01-15T10:30:00.000Z", "errorCode": "errorCode" } ] }
json
application/json

Download the credit note PDF

GET
https://api.ledgerbee.com/api
/v1/credit-notes/{id}/pdf
x-api-key (header)
or
OAuth 2.0

Streams the rendered credit note PDF. Pass draft=true to render a draft watermark version (generated on the fly).

Required Scope

  • invoices-read

Download the credit note PDF › path Parameters

id
​string · required

Credit Note ID

Download the credit note PDF › query Parameters

draft
​boolean

Render a draft watermark version

Download the credit note PDF › Responses

Bad Request

statusCode
​number
timestamp
​string
path
​string
message
​string
GET/v1/credit-notes/{id}/pdf
curl https://api.ledgerbee.com/api/v1/credit-notes/:id/pdf \ --header 'x-api-key: <api-key>'
Example Responses
{ "statusCode": 400, "timestamp": "2025-10-09T15:07:32.736Z", "path": "/company", "message": "Bad Request" }
text
application/pdf

Send a credit note to the customer

POST
https://api.ledgerbee.com/api
/v1/credit-notes/{id}/send
x-api-key (header)
or
OAuth 2.0

Sends the credit note over the chosen delivery channel (Email, Sproom e-invoicing, or Manual).

Required Scope

  • invoices-write

Send a credit note to the customer › path Parameters

id
​string · required

Credit Note ID

Send a credit note to the customer › Headers

x-api-idempotency-key
​string · maxLength: 255

Optional idempotency key for safely retrying mutating requests.

Send a credit note to the customer › Request Body

PublicSendCreditNote
deliveryType
​string · enum · required

Delivery channel

Enum values:
Email
Sproom
Manual
Leverandorservice
Example: Email
overrideEmail
​string

Override recipient email for this send only

overrideEanNumber
​string

Override EAN number for this send only

updateCustomerRecord
​boolean

Persist the override email / EAN onto the customer record

Default: false
documentTemplateId
​string

Override document template for PDF generation

Send a credit note to the customer › Responses

Credit note send accepted

PublicSendInvoiceResponse
success
​boolean · required

Whether the send was accepted

Example: true
deliveryType
​string · enum · required

The delivery channel the document was sent through

Enum values:
Email
Sproom
Manual
Leverandorservice
Example: Email
sproomDocumentId
​string | null

Sproom document ID when sent via e-invoicing

POST/v1/credit-notes/{id}/send
curl https://api.ledgerbee.com/api/v1/credit-notes/:id/send \ --request POST \ --header 'Content-Type: application/json' \ --header 'x-api-key: <api-key>' \ --data '{ "deliveryType": "Email", "overrideEmail": "string", "overrideEanNumber": "string", "updateCustomerRecord": false, "documentTemplateId": "string" }'
Example Request Body
{ "deliveryType": "Email", "overrideEmail": "string", "overrideEanNumber": "string", "updateCustomerRecord": false, "documentTemplateId": "string" }
json
application/json
Example Responses
{ "success": true, "deliveryType": "Email", "sproomDocumentId": "sproomDocumentId" }
json
application/json

CompanyCustomers