curl --location 'http://ws.qcertifica.com.br/RCWS001.asmx?op=ConsultarRemessa' \
--header 'SOAPAction: http://tempuri.org/ConsultarRemessa' \
--header 'Content-Type: text/xml; charset=utf-8' \
--data '<?xml version="1.0" encoding="UTF-8"?>
<root>
<soap12:Envelope>
<soap12:Body>
<tns:ConsultarRemessa>
<tns:data>
<tns:NroRemessa>consequat dolor</tns:NroRemessa>
<tns:Token>enim sunt sint</tns:Token>
</tns:data>
</tns:ConsultarRemessa>
</soap12:Body>
</soap12:Envelope>
</root>'<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<tns:ConsultarRemessaResponse xmlns:tns="http://tempuri.org/">
<tns:ConsultarRemessaResult>
<tns:NroRemessa>100</tns:NroRemessa>
<tns:SitRemessa>string</tns:SitRemessa>
<tns:SitRemessaDesc>string</tns:SitRemessaDesc>
<tns:Mensagem>string</tns:Mensagem>
<tns:Situacao>Sucesso</tns:Situacao>
</tns:ConsultarRemessaResult>
</tns:ConsultarRemessaResponse>
</soap12:Body>
</soap12:Envelope>