Hi ,
In the workflow manual (page 49), there's a method to create a new relation via below code.
e.g.
cmdb.newRelation(“AssetAssignee”)
.withCard1(“Employee”, cdNewEmployee.getId())
.withCard2(“Asset”, Item.getId())
.create();
If I have an attribute in "AssetAssignee" relation, e.g. isPrimary boolean.
Is it possible to set the value of 'isPrimary' when creating the relation from API ?
Thanks