system.kanoa.attribute.deleteAttribute
Description
Deletes an attribute.Syntax
deleteAttribute(attributeId, userId)- int attributeId - Attribute ID
- int userId - User ID
- bit success - Success flag
- string message - Message indicating the result
Code Examples
# Example usage
attributeId = 1
userId = 123
success, message = system.kanoa.attribute.deleteAttribute(attributeId, userId)
print(success, message) # Print the success flag and message