--- title: li-kordiam-integration description: "Legacy plugin to connect Kordiam stories with Livingdocs documents using a publication platform." --- ## History | Version | Change | | ------- | ------ | | release-2024-11 | Initial support with the rename as replacement for `li-desknet-integration` | ## Supported Features | Feature | Supported | | ------- | :-------: | | Document | ✔ | | Media | ✗ | | Include | ✗ | | Document Creation Flow | ✗ | | Push Message | ✗ | | Usage Log | ✗ | | Table Dashboard | ✔ | | Display Filter | ✗ | | Search Indexing | ✔ | | System Metadata | ✗ | | Planning System | ✗ | | Webhook Conditions | ✗ | ## Description > [!NOTE] > Added in: [`release-2024-11`](/operations/releases/release-2024-11/). Prior to [`release-2024-11`](/operations/releases/release-2024-11/), `li-kordiam-integration` was known as [`li-desknet-integration`](/reference/document/metadata/plugins/li-desknet-integration/llms.txt). > [!WARNING] > Support for `li-kordiam-integration` will eventually be removed. Please use [`li-kordiam-global`](/reference/document/metadata/plugins/li-kordiam-global/llms.txt) instead. To migrate, please refer to our [Kordiam Global Integration migration guide](/guides/integrations/kordiam-global-integration-migration/llms.txt). This plugin is used to connect Kordiam stories with Livingdocs documents. There are numerous options available to synchronise data between the two platforms. Further details can be found in the [Kordiam Platform Integration Guide](/guides/integrations/kordiam-legacy/llms.txt). ## Default UI **Document Metadata**: Read-only link to Kordiam distribution entry\ **Table Dashboard**: Read-only Kordiam publication/platform status ## Storage Format ```js { id: , publicationId: , platformId: , categoryId: , publicationStatusId: } ``` ## Content Type Config ```js { handle: 'myContentType', // ... metadata: [ { handle: 'myHandle' type: 'li-kordiam-integration', config: { publicationStatus: { fallbackPublicationStatusId: '2', // The order of matchers is important. The array is iterated through from first to last, // with the publicationStatusId taken from the earliest document state match. matchers: [ { type: 'publication', value: 'published', // Only 'published' supported publicationStatusId: '5' }, { type: 'task', taskName: 'proofreading', value: 'completed', // 'requested', 'accepted', 'completed' publicationStatusId: '4' }, { type: 'metadata', propertyName: 'prepared', value: true, // , , , , publicationStatusId: '3' } ] } }, ui: { label: 'Kordiam', config: { publicationStatus: { labels: [ { publicationStatusId: '5', label: 'Published', // optional, any SVG (ideally using viewBox) icon: '', // optional, any CSS colour string color: '#f00' } ] } } } } // ... ] } ```