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.
Operações disponíveis
listarTabelasretorna as tabelas disponíveisconsultarDadosretorna os dados de uma tabelalistarEstruturaretorna a estrutura de uma tabela
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-Type | text/xml; charset=utf-8 |
| SOAPAction | eproc/listarTabelas |
Params
| srv | consultarTabela |
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-Type | text/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-Type | text/xml; charset=utf-8 |
| SOAPAction | eproc/consultarDados |
Params
| srv | consultarTabela |
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-Type | text/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-Type | text/xml; charset=utf-8 |
| SOAPAction | eproc/listarEstrutura |
Params
| srv | consultarTabela |
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-Type | text/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
Responsável: Secretaria de Tecnologia da Informação – SETIC
E-mail: setic@tjac.jus.br
Telefone: (68) 3302-0334