For the complete documentation index, see llms.txt. This page is also available as Markdown.

Implementations

List rule implementations

get

Retrieves rule implementations filtered by rule business concept or active status.

Query parameters
rule_business_concept_idintegerOptional

Filter by rule business concept ID

is_rule_activestringOptional

Filter by rule active status (true/false)

Responses
200

Implementations response

application/json
get/api/rule_implementations

Create rule implementation

post

Creates a new rule implementation, either cloned or based on the provided rule data.

Body
Responses
201

Implementation response

application/json
Other propertiesanyOptional
post/api/rule_implementations

Link data structure to implementation

post

Links a data structure to the specified implementation.

Path parameters
implementation_idintegerRequired

Implementation ID

Body
data_structure_idintegerRequired

ID of the data structure to link

typestringRequired

Link type (e.g., 'dataset', 'population')

Responses
201

Structure link response

application/json
post/api/rule_implementations/{implementation_id}/data_structures

Upload implementations from CSV

post

Uploads implementations data from a CSV file.

Body
auto_publishstring · nullableOptional

Auto-publish flag (true/false)

implementationsstring · binaryRequired

CSV file with implementations

langstring · nullableOptional

Language code (e.g., 'en', 'es')

Responses
200

Upload response

application/json
post/api/rule_implementations/upload

Get implementation filters

post

Retrieves available implementation filter values based on the provided search criteria.

Body
Other propertiesanyOptional
Responses
200

Filter response

application/json
post/api/rule_implementation_filters/search

Search rule implementations

post

Searches rule implementations based on filter criteria and pagination.

Query parameters
pageintegerOptional

Page number

sizeintegerOptional

Page size

Body
pageintegerOptional

Page number

Default: 0
sizeinteger · min: 1Optional

Page size

Default: 20
statusstring · nullableOptional

Filter by status (e.g., 'deleted')

Other propertiesanyOptional
Responses
200

Implementation search response

application/json
scroll_idstring · nullableOptional

Scroll ID for pagination

post/api/rule_implementations/search

Search rule implementations by rule

post

Searches implementations by rule ID using the provided search criteria.

Body
pageintegerOptional

Page number

Default: 0
sizeinteger · min: 1Optional

Page size

Default: 20
statusstring · nullableOptional

Filter by status (e.g., 'deleted')

Other propertiesanyOptional
Responses
200

Implementation search response

application/json
scroll_idstring · nullableOptional

Scroll ID for pagination

post/api/rules/rule_implementations

Get rule implementation

get

Retrieves details for the specified rule implementation.

Path parameters
idintegerRequired

Implementation ID

Responses
200

Implementation response

application/json
get/api/rule_implementations/{id}

Update rule implementation

put

Updates the specified rule implementation with the provided payload.

Path parameters
idintegerRequired

Implementation ID

Body
Responses
200

Implementation response

application/json
Other propertiesanyOptional
put/api/rule_implementations/{id}

Delete rule implementation

delete

Deletes the specified rule implementation.

Path parameters
idintegerRequired

Implementation ID

Responses
204

No content

No content

delete/api/rule_implementations/{id}

No content

Update rule implementation

patch

Updates the specified rule implementation with the provided payload.

Path parameters
idintegerRequired

Implementation ID

Body
Responses
200

Implementation response

application/json
Other propertiesanyOptional
patch/api/rule_implementations/{id}

Download implementations as XLSX

post

Downloads implementations matching the provided filters as an XLSX file.

Query parameters
pageintegerOptional

Page number

sizeintegerOptional

Page size

impl_statusstringOptional

Implementation status filter

header_labelsstringOptional

Header labels

content_labelsstringOptional

Content labels

langstringOptional

Language

Responses
200

XLSX file

application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
string · binaryOptionalExample: binary content
post/api/rule_implementations/xlsx/download

Reindex implementations

get

Triggers a full reindex of implementations.

Responses
202

Accepted

No content

get/api/rule_implementations/search/reindex_all

No content

Unlink data structure from implementation

delete

Removes the link between the specified implementation and data structure.

Path parameters
idintegerRequired

Implementation structure ID

Responses
204

No content

No content

delete/api/rule_implementations/data_structures/{id}

No content

Upload implementations from XLSX

post

Uploads implementations from an XLSX file and enqueues processing.

Query parameters
langstringOptional

Language

auto_publishbooleanOptional

Auto publish implementations

Body
auto_publishstring · nullableOptional

Auto-publish flag (true/false)

implementationsstring · binaryRequired

XLSX file with implementations

langstring · nullableOptional

Language code (e.g., 'en', 'es')

Responses
200

Upload response

application/json
job_idintegerRequired

Job ID for tracking upload progress

post/api/rule_implementations/xlsx/upload

Create implementation result

post

Creates a result for the specified implementation.

Path parameters
implementation_idstringRequired

Implementation key

Body
Responses
201

Result response

application/json
post/api/rule_implementations/{implementation_id}/results

Last updated