We have an entity alredy created in Orion Context Broker, and we need to add one attribute tag. The structure is something like:
<?xml version="1.0" encoding="UTF-8"?>
<updateContextRequest>
<contextElementList>
<contextElement>
<entityId type="entity_id" isPattern="false">
<id>entity_id</id>
</entityId>
<contextAttributeList>
<contextAttribute>
<name>param1_name</name>
<type>param1_type</type>
<contextValue>param1_</contextValue>
</contextAttribute>
<contextAttribute>
<name>param2_name</name>
<type>param2_type</type>
<contextValue>param2_value</contextValue>
</contextAttribute>
</contextAttributeList>
</contextElement>
</contextElementList>
<updateAction>APPEND</updateAction>
</updateContextRequest>
We need to remove the entity and recreate it with new attributes, or you can add an attribute without having to remove it?
How is the procedure to delete and edit it? (edit if it's possible)
Regards, Ismael