ProfileLinks

This structure is helpful for showing all the profiles that a profile is linked to

"properties": [ { "name": "ProfileLinks", "dataType": "ListProfileId", "value": "[\"C23-51Q88-TYA29\",\"C23-7MSAG-V8KBY\"]" } ]

But actually it is prefered to add something like the following to each child profile. This will avoid any lost update problems when adding or removing linked profiles.

"properties": [ { "name": "ParentProfileId", "dataType": "ProfileId", "value": "C23-8CA3G-X7K92" } ]

Alternatively in the future we plan to add a feature where you can add or remove items from a list in a safe way by first locking the profile. Then reading the list. Then making the change. Then unlocking the profile. Locking will work well for data that is not updated very often.

Back