Projeto

Geral

Perfil

Wiki » Histórico » Versão 1

Eduardo Ribeiro, 30/04/2026 12:45 h

1 1 Eduardo Ribeiro
# JusDS Integration API
2
3
API multi-cliente para integrações do sistema JusDS.
4
5
## Rodar localmente
6
7
```bash
8
mvn clean package
9
java -jar target/jusds-integration-api.jar
10
```
11
12
## Gerar token
13
14
```http
15
POST /auth/token
16
Content-Type: application/json
17
18
{ "client_id": "prodesp-dev-client", "client_secret": "prodesp-dev-secret" }
19
```
20
21
## Testar tenant
22
23
```http
24
GET /api/842193/health
25
Authorization: Bearer TOKEN
26
```
27
28
## Testar escopo de processo
29
30
```http
31
GET /api/842193/processos/ping
32
Authorization: Bearer TOKEN
33
```
34
35
Porta padrão: `8093`.