system.kanoa.quality.config.sheets.getSheets
Description
Returns all unique check sheets based on the provided criteria.Syntax
getSheets(paramsDict)Parameters:
Returns:
Dictionary
Parameter | Type | Required | Notes |
---|---|---|---|
enabled | bool | No | True to filter by enabled check sheets |
chkShtTypeId | int | No | ID of the check sheet type |
chkShtId | int | No | ID of the check sheet |
chkShtName | string | No | Name of the check sheet |
chkShtTypeName | string | No | Name of the check sheet type |
path | string | No | Path of the check sheet |
Code Examples
# Usage example
params_dict = {'enabled': True, 'chkShtTypeId': 1, 'chkShtId': 2, 'chkShtName': 'QA Check 1', 'chkShtTypeName': 'QA Checks', 'path': 'QA Checks\QA Check%'}
sheets_data = system.kanoa.quality.config.sheets.getSheets(paramsDict=params_dict)
print(sheets_data)