<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://tempuri.org/" xmlns:s1="http://microsoft.com/wsdl/types/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/">
<soap:Body>
<UpdateCustomFields xmlns="http://tempuri.org/">
<request>
<Credentials>
<UserName>[Username]</UserName>
<Password>[Password]</Password>
</Credentials>
<identify>[Identity]</identify>
<Entities>
<CreateCustomFieldDto>
<BfsEntityBrickId>[Guid of the entity to add Custom Fields to]</BfsEntityBrickId>
<CustomFields>
<CustomField>
<FieldName>[Name of Custom field to update]</FieldName>
<Value>[Value of the Custom field to update]</Value>
</CustomField>
</CustomFields>
</CreateCustomFieldDto>
</Entities>
</request>
</UpdateCustomFields>
</soap:Body>
</soap:Envelope> |