...
Code Block |
---|
language | xml |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | ParticipanteRequest |
---|
linenumbers | true |
---|
|
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tms="http://tmsfrete.v2.targetmp.com.br">
<soapenv:Header/>
<soapenv:Body>
<tms:CadastrarAtualizarParticipante>
<tms:auth>
<tms:Usuario>?</tms:Usuario>
<tms:Senha>?</tms:Senha>
<tms:Token>?</tms:Token>
</tms:auth>
<tms:participante>
<tms:Instrucao>?</tms:Instrucao>
<tms:IdParticipante>?</tms:IdParticipante>
<tms:IdDmTipoPessoa>?</tms:IdDmTipoPessoa>
<tms:Nome>?</tms:Nome>
<tms:RazaoSocial>?</tms:RazaoSocial>
<tms:CPFCNPJ>?</tms:CPFCNPJ>
<tms:Endereco>?</tms:Endereco>
<tms:Bairro>?</tms:Bairro>
<tms:CEP>?</tms:CEP>
<tms:MunicipioCodigoIBGE>?</tms:MunicipioCodigoIBGE>
<tms:RNTRC>?</tms:RNTRC>
<tms:Ativo>?</tms:Ativo>
<tms:Email>?</tms:Email>
<tms:Telefone>?</tms:Telefone>
<tms:TelefoneCelular>?</tms:TelefoneCelular>
</tms:participante>
</tms:CadastrarAtualizarParticipante>
</soapenv:Body>
</soapenv:Envelope> |
Cadastrar
Abaixo, segue exemplo de cadastro de um Participante.
Code Block |
---|
language | xml |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Cadastro - ParticipanteRequest |
---|
linenumbers | true |
---|
|
Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tms="http://tmsfrete.v2.targetmp.com.br" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header/>
<soapenv:Body>
<tms:CadastrarAtualizarParticipante>
<tms:auth>
<tms:Usuario>tms.exemplo</tms:Usuario>
<tms:Senha>v0hXPrwerKblaBs=</tms:Senha>
<tms:Token i:nil="true" />
</tms:auth>
<tms:participante>
<tms:Instrucao>2</tms:Instrucao>
<tms:IdParticipante i:nil="true" />
<tms:IdDmTipoPessoa>2</tms:IdDmTipoPessoa>
<tms:Nome>OZIEL TEIXEIRA JUNIOR</tms:Nome>
<tms:RazaoSocial>OZIEL TEIXEIRA JUNIOR</tms:RazaoSocial>
<tms:CPFCNPJ>30844261000159</tms:CPFCNPJ>
<tms:Endereco>TRAVESSA VICENTE BENEDITO NOGUEIRA, 173</tms:Endereco>
<tms:Bairro>Centro</tms:Bairro>
<tms:CEP>37589000</tms:CEP>
<tms:MunicipioCodigoIBGE>3167400</tms:MunicipioCodigoIBGE>
<tms:RNTRC i:nil="true" />
<tms:Ativo>true</tms:Ativo>
<tms:Email i:nil="true" />
<tms:Telefone i:nil="true" />
<tms:TelefoneCelular i:nil="true" />
</tms:participante>
</tms:CadastrarAtualizarParticipante>
</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://tmsfrete.v2.targetmp.com.br/FreteTMSService/CadastrarAtualizarParticipanteResponse</Action>
</s:Header>
<s:Body>
<CadastrarAtualizarParticipanteResponse xmlns="http://tmsfrete.v2.targetmp.com.br">
<CadastrarAtualizarParticipanteResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Erro i:nil="true" />
<IdParticipante>77289</IdParticipante>
<IdDmTipoPessoa>2</IdDmTipoPessoa>
<Nome>OZIEL TEIXEIRA JUNIOR</Nome>
<RazaoSocial>OZIEL TEIXEIRA JUNIOR</RazaoSocial>
<CPFCNPJ>30844261000159</CPFCNPJ>
<Endereco>TRAVESSA VICENTE BENEDITO NOGUEIRA, 173</Endereco>
<Bairro>CENTRO</Bairro>
<CEP>37589000</CEP>
<MunicipioCodigoIBGE>3167400</MunicipioCodigoIBGE>
<RNTRC i:nil="true" />
<Ativo>true</Ativo>
<Email />
<Telefone />
<TelefoneCelular i:nil="true" />
</CadastrarAtualizarParticipanteResult>
</CadastrarAtualizarParticipanteResponse>
</s:Body>
</s:Envelope> |
Atualizar
Abaixo, segue exemplo de atualização de um Participante.
Code Block |
---|
language | xml |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Atualizar - ParticipanteRequest |
---|
linenumbers | true |
---|
|
Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tms="http://tmsfrete.v2.targetmp.com.br" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header/>
<soapenv:Body>
<tms:CadastrarAtualizarParticipante>
<tms:auth>
<tms:Usuario>tms.exemplo</tms:Usuario>
<tms:Senha>v0hXPrwerKblaBs=</tms:Senha>
<tms:Token i:nil="true" />
</tms:auth>
<tms:participante>
<tms:Instrucao>1</tms:Instrucao>
<tms:IdParticipante i:nil="true" />
<tms:IdDmTipoPessoa>2</tms:IdDmTipoPessoa>
<tms:Nome>OZIEL TEIXEIRA JUNIOR</tms:Nome>
<tms:RazaoSocial>OZIEL TEIXEIRA JUNIOR</tms:RazaoSocial>
<tms:CPFCNPJ>30844261000159</tms:CPFCNPJ>
<tms:Endereco>TRAVESSA VICENTE BENEDITO NOGUEIRA, 173</tms:Endereco>
<tms:Bairro>Centro</tms:Bairro>
<tms:CEP>37589000</tms:CEP>
<tms:MunicipioCodigoIBGE>3167400</tms:MunicipioCodigoIBGE>
<tms:RNTRC i:nil="true" />
<tms:Ativo>true</tms:Ativo>
<tms:Email i:nil="true" />
<tms:Telefone i:nil="true" />
<tms:TelefoneCelular i:nil="true" />
</tms:participante>
</tms:CadastrarAtualizarParticipante>
</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://tmsfrete.v2.targetmp.com.br/FreteTMSService/CadastrarAtualizarParticipanteResponse</Action>
</s:Header>
<s:Body>
<CadastrarAtualizarParticipanteResponse xmlns="http://tmsfrete.v2.targetmp.com.br">
<CadastrarAtualizarParticipanteResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Erro i:nil="true" />
<IdParticipante>77289</IdParticipante>
<IdDmTipoPessoa>2</IdDmTipoPessoa>
<Nome>OZIEL TEIXEIRA JUNIOR</Nome>
<RazaoSocial>OZIEL TEIXEIRA JUNIOR</RazaoSocial>
<CPFCNPJ>30844261000159</CPFCNPJ>
<Endereco>TRAVESSA VICENTE BENEDITO NOGUEIRA, 173</Endereco>
<Bairro>CENTRO</Bairro>
<CEP>37589000</CEP>
<MunicipioCodigoIBGE>3167400</MunicipioCodigoIBGE>
<RNTRC i:nil="true" />
<Ativo>true</Ativo>
<Email />
<Telefone />
<TelefoneCelular i:nil="true" />
</CadastrarAtualizarParticipanteResult>
</CadastrarAtualizarParticipanteResponse>
</s:Body>
</s:Envelope> |