system.kanoa.quality.event.deleteChkShtItemEvents
Description
Deletes check items from a check sheet in KanoaQDS.Syntax
deleteChkShtItemEvents(chkShtItemEventInfo, userId)- chkShtItemEventInfo - Dictionary containing information about check sheet items (dictionary).
- userId - ID of the user initiating the deletion (int).
- Success or failure of the deletion operation (boolean).
Code Example
# Usage example
chk_sht_item_event_info = {'chkShtEventId': 1}
user_id = 123
result = system.kanoa.quality.event.deleteChkShtItemEvents(chkShtItemEventInfo=chk_sht_item_event_info, userId=user_id)
print(result)