DOCUMENTAÇÃO CORPORATIVA

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 3 Next »

Objetivo

Esse método tem como objetivo realizar uma busca de Participante (Destinatário) que esteja cadastrado em nossa base de dados.


Observações Importantes

  1. Não é possível realizar rajadas para esse método, a TARGET limita uma quantidade X de requisições por minuto, aconselhamos requisições por demanda.

Request

BuscaParticipanteRequest
CampoTipoObrigatórioDescriçãoObservação
1




Response

ParticipanteResponse
CampoTipoObrigatórioDescriçãoObservação
1




2




Método

Abaixo, segue o método - 'BuscarParticipante'.

BuscarParticipanteRequest
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tms="http://tmsfrete.v2.targetmp.com.br">
   <soapenv:Header/>
   <soapenv:Body>
      <tms:BuscarParticipante>
         <tms:auth>
            <tms:Usuario>?</tms:Usuario>
            <tms:Senha>?</tms:Senha>
            <tms:Token>?</tms:Token>
         </tms:auth>
         <tms:buscaParticipante>
            <tms:QuantidadeItensPorPagina>?</tms:QuantidadeItensPorPagina>
            <tms:NumeroPagina>?</tms:NumeroPagina>
            <tms:IdParticipante>?</tms:IdParticipante>
            <tms:CPFCNPJ>?</tms:CPFCNPJ>
            <tms:Ativo>?</tms:Ativo>
         </tms:buscaParticipante>
      </tms:BuscarParticipante>
   </soapenv:Body>
</soapenv:Envelope>


Buscar Participante

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

Exemplo - BuscaParticipante
Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
   <soapenv:Header/>
   <soapenv:Body>
      <tms:BuscarParticipante>
         <tms:auth>
            <tms:Usuario>tms.exemplo</tms:Usuario>
            <tms:Senha>v0hXPrwerKblaBs=</tms:Senha>
            <tms:Token i:nil="true" />
         </tms:auth>
         <tms:buscaParticipante>
            <tms:QuantidadeItensPorPagina>1</tms:QuantidadeItensPorPagina>
            <tms:NumeroPagina>1</tms:NumeroPagina>
            <tms:IdParticipante i:nil="true" />
            <tms:CPFCNPJ>?</tms:CPFCNPJ>
            <tms:Ativo>true</tms:Ativo>
         </tms:buscaParticipante>
      </tms:BuscarParticipante>
   </soapenv:Body>
</soapenv:Envelope>


Response
 <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Header>
    <Action s:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">http://tempuri.org/IParticipanteExternal/BuscarParticipantesAtivosResponse</Action>
  </s:Header>
  <s:Body>
    <BuscarParticipantesAtivosResponse xmlns="http://tempuri.org/">
      <BuscarParticipantesAtivosResult xmlns:d4p1="http://schemas.datacontract.org/2004/07/TARGET.VectioFrete.Application.WCF.Contracts.External" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
        <d4p1:CodigoErro>0</d4p1:CodigoErro>
        <d4p1:MensagemRetorno>Sucesso!</d4p1:MensagemRetorno>
        <d4p1:Sucesso>true</d4p1:Sucesso>
        <d4p1:ParticipantesAtivos>
          <d4p1:BaseParticipanteRequestResponse>
            <d4p1:IdParticipanteOperacaoTransporte>7341</d4p1:IdParticipanteOperacaoTransporte>
            <d4p1:IdDmTipoPessoa>2</d4p1:IdDmTipoPessoa>
            <d4p1:Nome>PANDURATA ALIMENTOS LTDA</d4p1:Nome>
            <d4p1:RazaoSocial>PANDURATA ALIMENTOS LTDA</d4p1:RazaoSocial>
            <d4p1:CPFCNPJ>70940994005251</d4p1:CPFCNPJ>
            <d4p1:Endereco>R JOSE ANTONIO PEREIRA PASSOS</d4p1:Endereco>
            <d4p1:Bairro>PIRES</d4p1:Bairro>
            <d4p1:CEP>37640000</d4p1:CEP>
            <d4p1:IdMunicipio>3125101</d4p1:IdMunicipio>
            <d4p1:RNTRC />
            <d4p1:Ativo>true</d4p1:Ativo>
            <d4p1:TipoParticipante>DEST</d4p1:TipoParticipante>
            <d4p1:Email />
            <d4p1:Telefone />
            <d4p1:TelefoneCelular />
          </d4p1:BaseParticipanteRequestResponse>
        </d4p1:ParticipantesAtivos>
      </BuscarParticipantesAtivosResult>
    </BuscarParticipantesAtivosResponse>
  </s:Body>
</s:Envelope>


  • No labels