Hi all, do you know how it works the Preferred sub...
# suitetalkapi
a
Hi all, do you know how it works the Preferred subsidiary and additional subsidiaries sublist when adding a customer? We can only find the subsidiary field in the schema. Rest and/or Xml soap examples are appreciated
j
to add additional subsidiaries to a customer via REST, I use "record/v1/customersubsidiaryrelationship"
var data = {         'entity': {             'id': customerID         },         'subsidiary': {             'id': subsidiaryID         }     };
a
Thank you very much, will try soon
👍 1