API / Reference / Accounting Documents
List accounting documents
GET
https://api.light.inc/v1/accounting-documents/accounting-documents
Returns a paginated list of accounting documents
Authorization
Send one of these on every request. See Authentication for how to get credentials.
- API key
Basic authentication header of the form Basic <api_key>, where <api_key> is your api key.
- Bearer token
Query parameters
-
sortstringSort string in the format
field:direction. To provide multiple sort fields, separate them with commas.Available directions:
asc,desc.Available fields:
companyEntityId,documentSequenceId,postingDate,valuationDate,documentDate,businessPartnerName,status,createdBy,createdAt,description,documentNumber,arDueDate,arOpenedAt,ctPerformedAt,ctStatus,ctAmount,ccAmount. -
filterstringFilter string in the format
field:operator:value. To provide multiple filters, separate them with commas.Available operators:
eq,ne,in,not_in,gt,gte,lt,lte.- For
inandnot_inoperators, provide multiple values separated by the pipe character (|).
Available fields:
id,documentSequenceId,documentNumber,documentType,companyEntityId,ledgerName,businessPartnerName,businessPartnerId,status,currency,postingDate,documentDate,valuationDate,createdAt,updatedAt,createdBy,intercompanyDocumentId,apDueDate,apState,apVendorId,arContractId,arDueDate,arCustomerId,arInvoiceTemplateId,arPayeeBankAccountId,arOpenedAt,arState,ctCardId,ctCardBalanceAccountId,ctStatus,ctPerformedAt,cnToBeAdjustedAccDocType,intercompanyJournalEntryId,ycAccountingYearId,accountCode,accountLabel,taxCode. - For
-
limitinteger · int32Maximum number of items to return. Default is 50, maximum is 200.
-
offsetinteger · int64deprecatedNumber of items to skip before starting to collect the result set. Deprecated, use 'cursor' instead.
-
cursorstringThe cursor position to start returning results from. To opt-in into cursor-based pagination, provide
0for the initial request. For subsequent requests, usenextCursorandprevCursorfrom the previous response to navigate. Cursor values are opaque and should not be constructed manually.
Response
-
recordsarray of objectList of records for the current page
-
idstring · uuid -
companyIdstring · uuid -
companyEntityIdstring · uuid -
documentSequenceIdstring -
documentNumberstring -
documentTypestring⚠️ This enum is not exhaustive; new values may be added in the future.
One of
APARBPCCCNCTDEFXJEYC -
statusstring⚠️ This enum is not exhaustive; new values may be added in the future.
One of
DRAFTAPPROVAL_PENDINGAPPROVEDPOSTEDPARTIALLY_CLEAREDCLEAREDARCHIVED -
descriptionstring -
documentDatestring · dateThe document's own date. This model carries no
postingDate— for the date the document hit the ledger, read the ledger line viaGET /v1/ledger-transaction-lines. -
areLinesWithTaxboolean -
businessPartnerNamestring -
businessPartnerIdstring · uuid -
createdAtstring · date-time -
updatedAtstring · date-time -
totalTransactionAmountobject-
amountinteger · int64 -
dcSignstring⚠️ This enum is not exhaustive; new values may be added in the future.
One of
DC
-
-
totalTransactionAmountInMajorsnumber -
currencystring
-
-
hasMorebooleanBoolean flag indicating if there are more records available
-
totalinteger · int64deprecatedTotal number of records (only for offset pagination). This field is not guaranteed to be returned and only available for offset pagination, please do not rely on it and migrate to cursor pagination.
-
nextCursorstringCursor for fetching the next page (only for cursor pagination)
-
prevCursorstringCursor for fetching the previous page (only for cursor pagination)