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);
}