Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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
NamestringThe Name of the WhiteLabel
CommentstringThe Comment of the WhiteLabel
UrlstringThe Url of the WhiteLabel

Code examples

Code Block
languagec#
themeRDark
titleC# - Get all account types WhiteLabels from a BFS instance
linenumberstrue
collapsetrue
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);
        }


Blog Posts
sortcreation
contenttitles
labelsgetaccounttypes