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 »

Filter inputs

NameTypeDescriptionMandatoryAvailable from version
BrickIdsGuid[] Specific ids to look for

Keysstring[] Specific keys to look for

Response rows (Array) inherits from EntityBase

NameTypeDescriptionAvailable from version
BrickIdGuidThe BrickId (unique id) of the WhiteLabel
KeystringThe key of the WhiteLabel
CreatedDateDateTimeDate for creation of WhiteLabel
NamestringThe Name of the WhiteLabel
CommentstringThe Comment of the WhiteLabel
UrlstringThe Url of the WhiteLabel

Code examples

C# - Get all WhiteLabels from a BFS instance
public static void GetWhiteLabels()
        {
            var binding = new BasicHttpBinding();
            binding.MaxReceivedMessageSize = Int32.MaxValue;

            var target = new bfsapi.bfsapiSoapClient(binding, new EndpointAddress("http://apiurl/bfsapi.asmx"));

            var req = new bfsapi.GetWhiteLabelRequest()
            {
                Credentials = new bfsapi.Credentials
                {
                    UserName = "user",
                    Password = "password"
                },
                identify = "identifier",
                Args = new bfsapi.GetWhiteLabelArgs
                {
                    
                },
                Fields = new bfsapi.GetWhiteLabelFields
                {
                    BrickId = true,
                    Name = true,
                    Key = true,
                    Url = true

                }


            };

            var resp = target.GetWhiteLabels(req);
        }



  • No labels