Hi everyone,
I'm trying to update a Custom Property called "Équipe" with orionSDK for python like that:
def add_custom_property(swis, node, prop_name, prop_value):
custom_property = {prop_name: prop_value}
swis.update(node['Uri'] + '/CustomProperties', **custom_property)
add_custom_property(swis,results['results'][0],"Équipe", "Surveillance")
but I get this error:
Exception has occurred: HTTPError
400 Client Error: Nom de colonne non valide : 'item'. for URL: ...
I tried different ways to encode the character but nothing works for me, the issue only appears when the CustomProperty name has an accent on it.
Any workaround to update the value ?
Thanks,