Versions Compared

Key

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

...

Code Block
languagexml
themeRDark
firstline1
titleObterInformacoesCartaoRequest
linenumberstrue
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
   <soapenv:Header/>
   <soapenv:Body>
      <tem:ObterInformacoesCartao>
         <tem:numeroCartao>?</tem:numeroCartao>
      </tem:ObterInformacoesCartao>
   </soapenv:Body>
</soapenv:Envelope>


Obter Informação Cartão

Abaixo, segue exemplo do método - 'ObterInformacaoCartao'.

Code Block
languagexml
themeRDark
firstline1
titleObterInformacoesCartao
linenumberstrue
Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
   <soapenv:Header>
   	<Identification>exemplo</Identification>
   	<Token>v0testeBs=</Token>
</soapenv:Header>
   <soapenv:Body>
      <tem:ObterInformacoesCartao>
         <tem:numeroCartao>1117911714528140</tem:numeroCartao>
      </tem:ObterInformacoesCartao>
   </soapenv:Body>
</soapenv:Envelope>

Response
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Body>
      <ObterInformacoesCartaoResponse xmlns="http://tempuri.org/">
         <ObterInformacoesCartaoResult xmlns:a="http://schemas.datacontract.org/2004/07/TARGET.VectioFrete.Application.WCF.Contracts.External" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
            <a:CodigoErro>0</a:CodigoErro>
            <a:MensagemRetorno>Cartão localizado.</a:MensagemRetorno>
            <a:Sucesso>true</a:Sucesso>
            <a:Vinculado>false</a:Vinculado>
            <a:ResumoVinculacao>Cartão Sem Portador (Novo)</a:ResumoVinculacao>
            <a:NomePortador>Não Informado</a:NomePortador>
            <a:StatusCartao>Remessa</a:StatusCartao>
            <a:CartaoBloqueado>true</a:CartaoBloqueado>
         </ObterInformacoesCartaoResult>
      </ObterInformacoesCartaoResponse>
   </s:Body>
</s:Envelope>