Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Current »

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

C# - Create WhiteLabel
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);


        }



  • No labels