Inputs (Array of WhiteLabel) 

NameTypeDescriptionMandatoryAvailable from version
Namestring


KeystringKey must be unique

Urlstring


Commentstring


Response rows

NameTypeDescriptionAvailable from version
EntitiesArrayAll WhiteLabels in the request with BrickId and an array of Errors per whitelabel

Code examples

public static void CreateWhiteLabel()
        {
            var binding = new BasicHttpBinding();
            binding.MaxReceivedMessageSize = Int32.MaxValue;

            var target = new bfsapi.bfsapiSoapClient(binding, new EndpointAddress("http://apiurl/bfsapi.asmx"));
            var req = new bfsapi.CreateWhiteLabelRequest();
            req.Credentials = new bfsapi.Credentials
            {
                UserName = "user",
                Password = "password"
            };

            req.identify = "identifier";


            req.Entities = new bfsapi.WhiteLabel[]
            {
                new bfsapi.WhiteLabel()
                {
                    Name = "Test1",
                    Key = "testingkey",
                    Comment = "TestComment",
                    RequestReference = "ref",
                    Url = "http://someurl.com"
                },
                
            };

            var resp = target.CreateWhiteLabels(req);


        }