List Linked Deltas
Returns a paginated list of Linked Deltas. Linked deltas represent changes between document versions.
state, with errorMessage and retryCount carrying the detail.
Delta states
PENDING— queued, waiting to be applied. A save that hit a transient error returns toPENDINGfor another attempt, withretryCountincremented anderrorMessageholding the last error. A save that a full-document write replaced — one still being applied, or one already applied while that write was in progress — is also requeued, so it re-applies on top of the new contents.APPLYING— claimed and being applied to the document.APPLIED— every operation in the save landed, and the result was stored.APPLIED_PARTIAL— some operations referenced a parent or object the document no longer has, so they could never land. Those operations were dropped, the remaining ones were applied, and the result was stored.errorMessagesummarizes what was dropped.FAILED— nothing in the save could be applied, or the attempts were exhausted.errorMessagecarries the reason, and none of the changes were stored.SUPERSEDED— a save that had failed and was then replaced by a full-document write. It records that the earlier failure no longer reflects the stored document.
APPLIED_PARTIAL is a success state — the document was written. Treat it alongside APPLIED when checking whether a save landed, and read errorMessage to see which changes were dropped. Only FAILED means nothing was stored.filter=state=='APPLIED_PARTIAL'.Authorizations
API key for authentication. Create one from the Kodexa platform UI under Settings > Access Tokens.
Query Parameters
Page number (1-indexed). Defaults to 1.
Number of items per page (1-1000). Defaults to 20, maximum 1000.
Sort expression as field,direction. Direction is asc or desc. Multiple sort fields can be specified by repeating the parameter.
RSQL/FIQL filter expression. Supported operators: == (equals), != (not equals), =like= (contains), =in= (in list), > / >= / < / <= (comparison), =isnull=true (is null), =isnull=false (is not null). Combine with ; (AND) or , (OR). Example: name=='Acme Corp';status==active
Full-text search query matching against the entity's searchable fields.
Response
Page of LinkedDelta
Paginated response containing LinkedDelta items.
Array of LinkedDelta items on this page.
Whether this is the first page.
Whether this is the last page.
Current page number (0-indexed).
Number of items on the current page.
Pagination metadata.
Page size (number of items per page).
Sort metadata.
Total number of items across all pages.
Total number of pages.
