Documentação

🔌

API SOAP – Consulta de Tabelas (eproc)

Serviço web baseado em protocolo SOAP para consulta de tabelas, estruturas e dados no sistema eproc.

SOAP 1.1 XML · UTF-8 Acesso Público
Operações disponíveis
  • listarTabelas retorna as tabelas disponíveis
  • consultarDados retorna os dados de uma tabela
  • listarEstrutura retorna a estrutura de uma tabela
Ver documentação completa no Postman
Operações
POST listarTabelas Retorna a lista de tabelas disponíveis
https://eproc1gws.tjac.jus.br/ws/controlador_ws.php?srv=consultarTabela
Retorna a lista de tabelas disponíveis para consulta no serviço.
Headers
Content-Typetext/xml; charset=utf-8
SOAPActioneproc/listarTabelas
Params
srvconsultarTabela
Bodyraw (xml)
xml
<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope
  xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:epr="eproc">
  <soapenv:Header/>
  <soapenv:Body>
    <epr:listarTabelas/>
  </soapenv:Body>
</soapenv:Envelope>
Example Request
curl
curl --location --request POST '' \
--header 'Content-Type: text/xml; charset=utf-8' \
--header 'SOAPAction: eproc/listarTabelas' \
--data ''
Example Response 200 OK
Body
Headers (1)
xml
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
  xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <listarTabelasResponse>
      <ns:Lista/>
    </listarTabelasResponse>
  </soap:Body>
</soap:Envelope>
Content-Typetext/xml; charset=utf-8
POST consultarDados Consulta dados de uma tabela específica
https://eproc1gws.tjac.jus.br/ws/controlador_ws.php?srv=consultarTabela
Consulta os dados de uma tabela específica.
Headers
Content-Typetext/xml; charset=utf-8
SOAPActioneproc/consultarDados
Params
srvconsultarTabela
Bodyraw (xml)
xml
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
  xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <consultarDadosRequest>
      <nomeTabela>string</nomeTabela>
    </consultarDadosRequest>
  </soap:Body>
</soap:Envelope>
ℹ️  Substitua string pelo nome real da tabela obtido via listarTabelas.
Example Request
curl
curl --location '' \
--header 'Content-Type: text/xml; charset=utf-8' \
--header 'SOAPAction: eproc/consultarDados' \
--data '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
  xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <consultarDadosRequest>
      <nomeTabela>string</nomeTabela>
    </consultarDadosRequest>
  </soap:Body>
</soap:Envelope>'
Example Response 200 OK
Body
Headers (1)
xml
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
  xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <consultarDadosResponse>
      <tns:Tabela/>
    </consultarDadosResponse>
  </soap:Body>
</soap:Envelope>
Content-Typetext/xml; charset=utf-8
POST listarEstrutura Retorna a estrutura (linhas/colunas) de uma tabela
https://eproc1gws.tjac.jus.br/ws/controlador_ws.php?srv=consultarTabela
Retorna a estrutura (linhas/colunas) de uma tabela específica.
Headers
Content-Typetext/xml; charset=utf-8
SOAPActioneproc/listarEstrutura
Params
srvconsultarTabela
Bodyraw (xml)
xml
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
  xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <consultarDadosRequest>
      <nomeTabela>string</nomeTabela>
    </consultarDadosRequest>
  </soap:Body>
</soap:Envelope>
Example Request
curl
curl --location '' \
--header 'Content-Type: text/xml; charset=utf-8' \
--header 'SOAPAction: eproc/listarEstrutura' \
--data '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
  xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <consultarDadosRequest>
      <nomeTabela>string</nomeTabela>
    </consultarDadosRequest>
  </soap:Body>
</soap:Envelope>'
Example Response 200 OK
Body
Headers (1)
xml
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
  xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <consultarDadosResponse>
      <tns:Tabela/>
    </consultarDadosResponse>
  </soap:Body>
</soap:Envelope>
Content-Typetext/xml; charset=utf-8

Fonte: documenter.getpostman.com/view/22656023/2sBXinJWVn  ·  SETIC / DIPOR · TJAC · 2025

Última modificação: 01/04/2026
Responsável: Secretaria de Tecnologia da Informação – SETIC
E-mail: setic@tjac.jus.br
Telefone: (68) 3302-0334