Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
<?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>
        <CreateCustomFields 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>Test</FieldName><FieldName>[Name of the Custom field to create]</FieldName>
                                <Value>[Value of the Custom <Value>Test<field]</Value>
                            </CustomField>
                        </CustomFields>
                    </CreateCustomFieldDto>
                </Entities>
            </request>
        </CreateCustomFields>
    </soap:Body>
</soap:Envelope>