Skip to main content
GET
/
api
/
document-stores
/
{id}
Get DocumentStores by ID
curl --request GET \
  --url https://platform.kodexa.ai/api/document-stores/{id} \
  --header 'x-api-key: <api-key>'
{
  "changeSequence": 123,
  "createdOn": "2023-11-07T05:31:56Z",
  "deprecated": true,
  "eventAware": true,
  "extensionPackRef": "<string>",
  "id": "c2345678-90ab-cdef-1234-567890abcdef",
  "metadata": "aSDinaTvuI8gbWludGxpZnk=",
  "name": "Invoice Store",
  "publicAccess": true,
  "slug": "invoice-store",
  "storeType": "DOCUMENT",
  "supportsScheduling": true,
  "template": true,
  "updatedOn": "2023-11-07T05:31:56Z",
  "uuid": "<string>",
  "version": "1.0.0"
}

Authorizations

x-api-key
string
header
required

API key for authentication. Create one from the Kodexa platform UI under Settings > Access Tokens.

Path Parameters

id
string<uuid>
required

Unique identifier (UUID) of the resource.

Response

The DocumentStores

Store metadata describes a document store — a container for organizing and processing documents.

changeSequence
integer<int32>

Optimistic locking version number.

createdOn
string<date-time>

Timestamp when the store was created.

deprecated
boolean

Whether this store is deprecated.

eventAware
boolean | null

Whether the store emits events on changes.

extensionPackRef
string

Reference to the extension pack.

id
string

Unique identifier (UUID) for the store.

Example:

"c2345678-90ab-cdef-1234-567890abcdef"

metadata
string<byte>

Store-specific configuration metadata.

name
string

Display name of the document store.

Example:

"Invoice Store"

publicAccess
boolean

Whether the store is publicly accessible.

slug
string

URL-friendly identifier for the store.

Example:

"invoice-store"

storeType
string

Type of the store (e.g., DOCUMENT, DATA).

Example:

"DOCUMENT"

supportsScheduling
boolean | null

Whether the store supports scheduled processing.

template
boolean

Whether this store is a template.

updatedOn
string<date-time>

Timestamp when the store was last updated.

uuid
string

Secondary UUID identifier.

version
string

Semantic version string (e.g., '1.0.0').

Example:

"1.0.0"