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 3 Next »

Inputs (Array of WhiteLabel) 

NameTypeDescriptionMandatoryAvailable from version
Namestring


Keystring


Urlstring


Commentstring


Response rows

NameTypeDescriptionAvailable from version
BrickIdGuidThe BrickId (unique id) of the account type
KeystringThe account type key of the account type

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