system.kanoa.quality.sheet.getSheetTypes
Description
Retrieves check sheet types.Syntax
getSheetTypes(paramsDict)Parameters:
Returns:
Dictionary
Parameter | Type | Required | Notes |
---|---|---|---|
path | string | No | Path of the check sheet type |
chkShtTypeId | int | No | ID of the specific check sheet type |
parentId | int | No | ID of the parent check sheet type |
enabled | bool | No | True to filter by enabled check sheet types |
chkShtTypeName | string | No | Name of the check sheet type |
Code Examples
# Usage example
params_dict = {'enabled': True, 'chkShtTypeId': 1, 'chkShtTypeName': 'Approved'}
sheet_types_data = system.kanoa.quality.sheet.getSheetTypes(paramsDict=params_dict)
print(sheet_types_data)