Deletar revenda

Para deletar uma revenda do B2B, através do DeleteRevenda envie o Id da revenda.

Exemplo de request

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
   <soapenv:Header/>
   <soapenv:Body>
      <tem:DeleteRevenda>
         <tem:revendaId>123</tem:revendaId>
      </tem:DeleteRevenda>
   </soapenv:Body>
</soapenv:Envelope>

Exemplo de response

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Body>
      <DeleteRevendaResponse xmlns="http://tempuri.org/">
         <DeleteRevendaResult xmlns:a="http://schemas.datacontract.org/2004/07/B2B.Integration.Webservices" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
            <a:Error>false</a:Error>
            <a:ErrorType i:nil="true"/>
            <a:Message i:nil="true"/>
         </DeleteRevendaResult>
      </DeleteRevendaResponse>
   </s:Body>
</s:Envelope>