Versions Compared

Key

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

...

...

...

...

...

...

Inputs (Array of WhiteLabels to update)

NameTypeDescriptionMandatoryAvailable from version
BrickIdGuid This is the unique id of the WhiteLabel that should be updated

Namestring New name of the WhiteLabel

Keystring New Key of the WhiteLabel

 Urlstring New Url of the WhiteLabel

 Commentstring New Comment of the WhiteLabel

Outputs

NameTypeDescriptionAvailable from version
BrickIdGuidAll WhiteLabels in the request is returned along with Errors per WhiteLabel

Code examples

Code Block
languagec#
themeRDark
titleC# - Update WhiteLabel
linenumberstrue
collapsetrue
public static void UpdateWhiteLabel()
        {
            var binding = new BasicHttpBinding();
            binding.MaxReceivedMessageSize = Int32.MaxValue;

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

            var req = new bfsapi.UpdateWhiteLabelsRequest()
            {
                Credentials = new bfsapi.Credentials
                {
                    UserName = "user",
                    Password = "password"
                },
                identify = "identifier",

                Fields = new bfsapi.UpdateWhiteLabelFields()
                {
                    Name = true,
                    Url = true


                },
                Entities = new bfsapi.UpdateWhiteLabel[]
                {
                    new bfsapi.UpdateWhiteLabel
                    {
                        BrickId = new Guid("5d263308-ff11-48d7-bd94-41aac88ac8e7"),
                        Name = "NewName",
                        Url = "NewUrl"
                    }
                }


            };

            var resp = target.UpdateWhiteLabel(req);
        }

...