Compare commits
17
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0c9a3ea2c4 | ||
|
|
88c2a9f66b | ||
|
|
99ec3384d3 | ||
|
|
6b1020d47c | ||
|
|
a5b6dadae4 | ||
|
|
f362be0a84 | ||
|
|
986fdb3f43 | ||
|
|
dac720bc0b | ||
|
|
9358624392 | ||
|
|
4f14efbfc5 | ||
|
|
cc6725a39f | ||
|
|
69fd9af133 | ||
|
|
49f0ecc163 | ||
|
|
bdc43c7614 | ||
|
|
4275a34c45 | ||
|
|
fcd0fd042f | ||
|
|
b40b706ac1 |
@@ -0,0 +1,187 @@
|
|||||||
|
# Analisi repository API Collections
|
||||||
|
|
||||||
|
## Esito
|
||||||
|
|
||||||
|
Il repository ha un’architettura semplice e appropriata allo scopo, ma la pipeline Bruno → httpyac non è sufficientemente protetta. I rischi principali sono:
|
||||||
|
|
||||||
|
1. esempi versionati contenenti dati personali e identificativi di sessione;
|
||||||
|
2. conversioni httpyac incomplete o incompatibili;
|
||||||
|
3. tre file YAML non validi per il parser usato dal progetto;
|
||||||
|
4. test e quality gate quasi assenti.
|
||||||
|
|
||||||
|
Non serve una riscrittura generale: gli interventi possono essere incrementali e concentrati sui confini di conversione e validazione.
|
||||||
|
|
||||||
|
## Struttura e dipendenze
|
||||||
|
|
||||||
|
```text
|
||||||
|
bruno/workspace.yml
|
||||||
|
└─ 11 collezioni Bruno / 272 richieste circa
|
||||||
|
├─ folder e configurazioni ereditate
|
||||||
|
├─ ambienti e template dei segreti
|
||||||
|
├─ script Bruno
|
||||||
|
└─ esempi di request/response versionati
|
||||||
|
|
||||||
|
env.json.template
|
||||||
|
└─ setup-json-environment.ps1 → env.json locale
|
||||||
|
├─ update-bruno-environments.ps1 → .env Bruno
|
||||||
|
└─ update-httpyac-environments.ps1 → .env httpyac
|
||||||
|
|
||||||
|
bruno/
|
||||||
|
└─ generate-httpyac-requests.ps1 → autodocs/httpyac/ ignorato da Git
|
||||||
|
```
|
||||||
|
|
||||||
|
Dipendenze esterne:
|
||||||
|
|
||||||
|
- PowerShell ≥ 7.5;
|
||||||
|
- modulo `powershell-yaml`, disponibile localmente in versione 0.4.12;
|
||||||
|
- Bruno;
|
||||||
|
- estensione/CLI httpyac, non disponibile nella shell esaminata.
|
||||||
|
|
||||||
|
`tools/generate-http-requests/node_modules` è un artefatto locale ignorato, senza manifest versionato, e non costituisce una dipendenza riproducibile del repository.
|
||||||
|
|
||||||
|
## Quality gate e test attuali
|
||||||
|
|
||||||
|
Non risultano configurati CI, Pester, PSScriptAnalyzer, linting, coverage, scansione dei segreti o validazione automatica delle collezioni.
|
||||||
|
|
||||||
|
Controlli read-only eseguiti:
|
||||||
|
|
||||||
|
- 5 script PowerShell analizzati: zero errori sintattici;
|
||||||
|
- 338 file YAML analizzati con `powershell-yaml`;
|
||||||
|
- 3 YAML non validi;
|
||||||
|
- 269 richieste analizzabili: 129 GET, 118 POST, 17 PUT, 3 DELETE, 2 PATCH;
|
||||||
|
- 140 richieste mutative analizzabili;
|
||||||
|
- solo 4 delle 140 richieste mutative hanno una definizione di test a livello di richiesta;
|
||||||
|
- i 7 `.env.template` sono attualmente sincronizzati con `env.json.template`;
|
||||||
|
- nessuna suite automatizzata eseguibile;
|
||||||
|
- PSScriptAnalyzer e httpyac CLI non presenti.
|
||||||
|
|
||||||
|
Gli `examples` presenti nelle collezioni sono snapshot, non test. Lo stato complessivo dei gate è quindi **non superato/non definito**: manca un gate ufficiale e la validazione YAML già fallisce.
|
||||||
|
|
||||||
|
## Backlog tecnico prioritizzato
|
||||||
|
|
||||||
|
Costo indicativo: **S** < 1 giorno, **M** 1–3 giorni, **L** > 3 giorni.
|
||||||
|
|
||||||
|
### 1. Dati personali e cookie di sessione negli esempi versionati
|
||||||
|
|
||||||
|
- **Severità/costo:** Critica / M
|
||||||
|
- **File/modulo:** esempi Bruno, per esempio [Get Items.yml](<C:/_Git/UniPR/api-collections/bruno/collections/IRIS GW (Gateway) REST API (v1)/WfItems/Get Items.yml:136>) e [Get UserInfo.yml](<C:/_Git/UniPR/api-collections/bruno/collections/Shibboleth/Get UserInfo.yml:76>).
|
||||||
|
- **Problema:** rilevati identificativi compatibili con codici fiscali in 38 file e cookie/session ID in 20 file. Alcuni esempi includono anche nomi e informazioni organizzative. Il file più grande supera 5,3 MB e 134.000 righe.
|
||||||
|
- **Rischio:** esposizione di dati personali, conservazione indefinita nella cronologia Git, possibili credenziali di sessione ancora utilizzabili, forte rumore nelle review.
|
||||||
|
- **Intervento minimo:** verificare l’origine dei dati, invalidare eventuali sessioni ancora valide, redigere o sostituire con dati sintetici gli esempi; limitare gli snapshot alle proprietà indispensabili.
|
||||||
|
- **Test prima dell’intervento:** introdurre una scansione ripetibile per cookie, token e identificativi personali con allowlist esplicita; registrare il baseline prima della redazione.
|
||||||
|
- **Impatto architetturale:** trasversale sulla politica di gestione degli esempi, senza nuovi layer.
|
||||||
|
|
||||||
|
### 2. Tre collezioni non sono parseabili dal convertitore dichiarato
|
||||||
|
|
||||||
|
- **Severità/costo:** Alta / S
|
||||||
|
- **File/modulo:** [Backoffice - Dashboard.yml](<C:/_Git/UniPR/api-collections/bruno/collections/elixForms API v2/Console UI/Backoffice - Dashboard.yml:125>), [Login - Backoffice.yml](<C:/_Git/UniPR/api-collections/bruno/collections/elixForms API v2/Console UI/Login - Backoffice.yml:172>), [Login - Gestione Schede.yml](<C:/_Git/UniPR/api-collections/bruno/collections/elixForms API v2/Console UI/Login - Gestione Schede.yml:140>).
|
||||||
|
- **Problema:** i literal block contengono righe iniziali whitespace-only che `powershell-yaml` rifiuta. Il generatore propaga l’errore da [Parse-Yaml](C:/_Git/UniPR/api-collections/scripts/generate-httpyac-requests.ps1:26).
|
||||||
|
- **Rischio:** generazione httpyac interrotta e output parziale o obsoleto.
|
||||||
|
- **Intervento minimo:** normalizzare quei blocchi e fare fallire il comando con un riepilogo completo dei file invalidi.
|
||||||
|
- **Test prima dell’intervento:** gate che esegua il parsing di tutti i YAML; fixture con il blocco problematico e verifica dell’errore diagnostico.
|
||||||
|
- **Impatto architetturale:** nessuno; rende affidabile il formato sorgente.
|
||||||
|
|
||||||
|
### 3. Script Bruno copiati in httpyac senza adattamento del runtime
|
||||||
|
|
||||||
|
- **Severità/costo:** Alta / M
|
||||||
|
- **File/modulo:** [Parse-HttpBlock](C:/_Git/UniPR/api-collections/scripts/generate-httpyac-requests.ps1:206) e [Build-RequestContent](C:/_Git/UniPR/api-collections/scripts/generate-httpyac-requests.ps1:738).
|
||||||
|
- **Problema:** 16 file `.http` generati contengono chiamate Bruno come `bru.setVar` e `res.getStatus()`. httpyac documenta invece oggetti quali `response`, `$global` ed `exports`; la copia verbatim attraversa impropriamente il confine tra due runtime diversi. [Documentazione ufficiale httpyac](https://httpyac.github.io/guide/scripting.html)
|
||||||
|
- **Rischio:** request apparentemente generate ma script e test non eseguibili.
|
||||||
|
- **Intervento minimo:** tradurre solo le API Bruno effettivamente usate oppure interrompere esplicitamente la conversione dei file non supportati, evitando output silenziosamente difettoso.
|
||||||
|
- **Test prima dell’intervento:** golden test per login, lettura risposta e salvataggio variabile; esecuzione del `.http` generato contro un endpoint mock.
|
||||||
|
- **Impatto architetturale:** importante sul boundary Bruno→httpyac, ma confinato all’adapter esistente.
|
||||||
|
|
||||||
|
### 4. I body `multipart-form` vengono ignorati
|
||||||
|
|
||||||
|
- **Severità/costo:** Alta / M
|
||||||
|
- **File/modulo:** [Build-RequestContent](C:/_Git/UniPR/api-collections/scripts/generate-httpyac-requests.ps1:693); richieste interessate includono [AJ Console - Save Object.yml](<C:/_Git/UniPR/api-collections/bruno/collections/elixForms API v2/Console UI/AJ Console - Save Object.yml:15>), [Backoffice - Create Group.yml](<C:/_Git/UniPR/api-collections/bruno/collections/elixForms API v2/Console UI/Backoffice - Create Group.yml:16>) e Login Backoffice.
|
||||||
|
- **Problema:** il generatore implementa soltanto `json` e `form-urlencoded`; per multipart emette una POST senza body e senza segnalazione.
|
||||||
|
- **Rischio:** operazioni mutative errate, con comportamento molto diverso dalla richiesta Bruno.
|
||||||
|
- **Intervento minimo:** supportare multipart per i campi realmente presenti oppure fallire esplicitamente indicando request e body type.
|
||||||
|
- **Test prima dell’intervento:** fixture multipart con campi testo, placeholder e caratteri speciali; confronto golden del body generato.
|
||||||
|
- **Impatto architetturale:** locale al convertitore.
|
||||||
|
|
||||||
|
### 5. Aree mutative quasi prive di protezione automatica
|
||||||
|
|
||||||
|
- **Severità/costo:** Alta / L
|
||||||
|
- **File/modulo:** soprattutto `Cambio stato e-o integrazione`, `Console UI`, ESSE3 e i 93 POST EFTL.
|
||||||
|
- **Problema:** soltanto 4 delle 140 richieste mutative analizzabili hanno test request-level; non esiste un comando CI che li esegua.
|
||||||
|
- **Rischio:** regressioni su cambio stato, clone, aggiornamenti, delete e autenticazione scoperte soltanto manualmente.
|
||||||
|
- **Intervento minimo:** partire da smoke/contract test per autenticazione e operazioni più distruttive, usando ambienti controllati o mock; non è necessario testare subito ogni snapshot.
|
||||||
|
- **Test prima dell’intervento:** definire una matrice minima per status, payload obbligatori, errori 4xx e assenza di effetti collaterali indesiderati.
|
||||||
|
- **Impatto architetturale:** introduce un gate, non un nuovo layer applicativo.
|
||||||
|
|
||||||
|
### 6. Serializzazione `.env` non round-trip safe
|
||||||
|
|
||||||
|
- **Severità/costo:** Alta / S
|
||||||
|
- **File/modulo:** [update-bruno-environments.ps1](C:/_Git/UniPR/api-collections/scripts/update-bruno-environments.ps1:29) e [update-httpyac-environments.ps1](C:/_Git/UniPR/api-collections/scripts/update-httpyac-environments.ps1:26).
|
||||||
|
- **Problema:** i valori contenenti `#` vengono quotati, ma il parser conserva le quote; una seconda esecuzione può produrre quote duplicate. Apici, newline e altri caratteri dotenv non vengono gestiti sistematicamente.
|
||||||
|
- **Rischio:** password e token validi diventano inutilizzabili senza errore esplicito.
|
||||||
|
- **Intervento minimo:** definire escaping e parsing simmetrici per il sottoinsieme dotenv supportato.
|
||||||
|
- **Test prima dell’intervento:** round-trip parametrico per `#`, apici, spazi, `=`, valori vuoti e `null`.
|
||||||
|
- **Impatto architetturale:** boundary dei segreti; nessun nuovo layer necessario.
|
||||||
|
|
||||||
|
### 7. Test errato e dead code nello script “owners”
|
||||||
|
|
||||||
|
- **Severità/costo:** Media / S
|
||||||
|
- **File/modulo:** [SCRIPT - Get Contracts with two or more owners.yml](<C:/_Git/UniPR/api-collections/bruno/collections/IRIS GW (Gateway) REST API (v1)/Contracts/SCRIPT - Get Contracts with two or more owners.yml:113>).
|
||||||
|
- **Problema:** l’output espone `ownersCount`, ma il test verifica `contributorCount` alla [riga 248](<C:/_Git/UniPR/api-collections/bruno/collections/IRIS GW (Gateway) REST API (v1)/Contracts/SCRIPT - Get Contracts with two or more owners.yml:248>). Il controllo `output.length >= 0` alla riga 258 è tautologico. Rimane inoltre un intero ramo contributor commentato e una funzione department non più utilizzata.
|
||||||
|
- **Rischio:** fallimenti ingannevoli o test che passano senza verificare l’aggregazione; manutenzione confusa.
|
||||||
|
- **Intervento minimo:** correggere la proprietà, usare una fixture non vuota e rimuovere il ramo commentato dopo aver verificato che non sia necessario.
|
||||||
|
- **Test prima dell’intervento:** dataset con zero, uno e più owners e paginazione multipla.
|
||||||
|
- **Impatto architetturale:** nessuno; elimina una conseguenza concreta del copy/paste.
|
||||||
|
|
||||||
|
### 8. Generatore troppo concentrato e accoppiato al nome della cartella EFTL
|
||||||
|
|
||||||
|
- **Severità/costo:** Media / M
|
||||||
|
- **File/modulo:** [generate-httpyac-requests.ps1](C:/_Git/UniPR/api-collections/scripts/generate-httpyac-requests.ps1:420).
|
||||||
|
- **Problema:** 1.095 righe; `Build-RequestContent` è di 377 righe con circa 63 diramazioni. Il comportamento EFTL è attivato cercando `"EFTL processing"` nel percorso e sovrascrive indiscriminatamente il post-response script alle [righe 733–785](C:/_Git/UniPR/api-collections/scripts/generate-httpyac-requests.ps1:733). Inoltre `Parse-Workspace` reimplementa manualmente il parsing pur essendo già disponibile il parser YAML.
|
||||||
|
- **Rischio:** cambiamenti locali producono regressioni trasversali; rinominare una cartella cambia la semantica.
|
||||||
|
- **Intervento minimo:** aggiungere test di caratterizzazione e separare soltanto rendering di auth, body e script in funzioni pure; rendere esplicita la modalità EFTL nella configurazione.
|
||||||
|
- **Test prima dell’intervento:** golden test EFTL/non-EFTL, inclusi script senza marker o marker incompleti.
|
||||||
|
- **Impatto architetturale:** chiarisce il confine tra conversione generica e regola EFTL senza introdurre pattern ulteriori.
|
||||||
|
|
||||||
|
### 9. Duplicazione degli updater e variabili dipendenti da rami precedenti
|
||||||
|
|
||||||
|
- **Severità/costo:** Media / M
|
||||||
|
- **File/modulo:** i due `update-*-environments.ps1`, differenti per appena 15 aggiunte e 18 rimozioni.
|
||||||
|
- **Problema:** `$sectionKeys` viene inizializzata dentro il ramo che trova `.env.template`, ma può essere usata successivamente anche quando il template manca. La duplicazione rende facile correggere un solo updater.
|
||||||
|
- **Rischio:** chiavi mancanti, riuso accidentale dei valori dell’iterazione precedente e divergenza Bruno/httpyac.
|
||||||
|
- **Intervento minimo:** prima inizializzare sempre le chiavi; poi usare un’unica funzione parametrizzata per root e policy di esclusione.
|
||||||
|
- **Test prima dell’intervento:** template presente/assente, `.env` presente/assente, chiavi aggiunte/rimosse e valori `null`.
|
||||||
|
- **Impatto architetturale:** riduce duplicazione di conoscenza nella pipeline dei segreti.
|
||||||
|
|
||||||
|
### 10. Bootstrap delle dipendenze non riproducibile
|
||||||
|
|
||||||
|
- **Severità/costo:** Media / S
|
||||||
|
- **File/modulo:** [setup-tools.ps1](C:/_Git/UniPR/api-collections/scripts/setup-tools.ps1:1) e [README.md](C:/_Git/UniPR/api-collections/README.md:18).
|
||||||
|
- **Problema:** il README promette un tentativo di installazione, ma lo script esegue solo `Import-Module ... -ErrorAction SilentlyContinue` e comunica comunque successo. Non è dichiarata una versione compatibile.
|
||||||
|
- **Rischio:** una nuova workstation fallisce più avanti con diagnostica poco chiara.
|
||||||
|
- **Intervento minimo:** verificare presenza/versione e terminare con istruzioni esplicite oppure installare soltanto previo consenso dell’utente.
|
||||||
|
- **Test prima dell’intervento:** esecuzione in una sessione senza modulo e con versione incompatibile.
|
||||||
|
- **Impatto architetturale:** dependency hygiene, nessun cambiamento strutturale.
|
||||||
|
|
||||||
|
### 11. Copie e contenuti obsoleti aumentano il rischio di deriva
|
||||||
|
|
||||||
|
- **Severità/costo:** Bassa / S–M
|
||||||
|
- **File/modulo:** directory `OLD`, `Obsolete`, file `Get Items Copy.yml`/`Get ASNs Copy.yml` e due coppie di runner completamente identiche.
|
||||||
|
- **Problema:** duplicazione significativa e snapshot molto grandi; non è però dimostrabile dalla sola analisi statica che siano davvero inutilizzati.
|
||||||
|
- **Rischio:** correzioni applicate a una sola copia, review lente e crescita del repository.
|
||||||
|
- **Intervento minimo:** censire uso e ownership; eliminare solo copie confermate inutilizzate o documentarne esplicitamente lo scopo.
|
||||||
|
- **Test prima dell’intervento:** confronto comportamentale delle copie e verifica con gli utilizzatori.
|
||||||
|
- **Impatto architetturale:** nessuno; pulizia controllata, non refactoring speculativo.
|
||||||
|
|
||||||
|
## Invarianti consigliate
|
||||||
|
|
||||||
|
I futuri gate dovrebbero verificare almeno che:
|
||||||
|
|
||||||
|
- ogni YAML sia parseabile dal parser effettivamente usato;
|
||||||
|
- nessun body type venga ignorato silenziosamente;
|
||||||
|
- gli script attraversino Bruno→httpyac solo se tradotti o dichiarati compatibili;
|
||||||
|
- gli output generati siano prodotti in una directory temporanea e validati;
|
||||||
|
- i template dei segreti restino sincronizzati;
|
||||||
|
- esempi e snapshot non contengano credenziali o dati personali non autorizzati.
|
||||||
|
|
||||||
|
Non raccomando al momento un ADR formale: basterebbe documentare queste invarianti nel repository e automatizzarle.
|
||||||
|
|
||||||
|
Non ho letto il contenuto di `env.json`, non ho eseguito chiamate API e non ho lanciato script che scrivono output. `git status` e `git diff` sono rimasti vuoti: nessun file è stato modificato.
|
||||||
+6
-5
@@ -7,12 +7,8 @@ info:
|
|||||||
|
|
||||||
http:
|
http:
|
||||||
method: DELETE
|
method: DELETE
|
||||||
url: "{{baseUrl}}/allegati/docPers/:docPersId"
|
url: "{{baseUrl}}/allegati/docPers/:docPersId?allegatoId="
|
||||||
params:
|
params:
|
||||||
- name: docPersId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo documento identità
|
|
||||||
- name: allegatoId
|
- name: allegatoId
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -27,6 +23,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: tipologia dell'allegato relativo all'entità p17_tipologia_allegati
|
description: tipologia dell'allegato relativo all'entità p17_tipologia_allegati
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: docPersId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo documento identità
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -34,6 +34,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 204 Response
|
- name: 204 Response
|
||||||
|
|||||||
+6
-5
@@ -7,12 +7,8 @@ info:
|
|||||||
|
|
||||||
http:
|
http:
|
||||||
method: DELETE
|
method: DELETE
|
||||||
url: "{{baseUrl}}/allegati/carriere/:matId"
|
url: "{{baseUrl}}/allegati/carriere/:matId?allegatoId="
|
||||||
params:
|
params:
|
||||||
- name: matId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: Identificativo tratto carriera studente
|
|
||||||
- name: allegatoId
|
- name: allegatoId
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -22,6 +18,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: tipologia dell'allegato relativo all'entità p17_tipologia_allegati
|
description: tipologia dell'allegato relativo all'entità p17_tipologia_allegati
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: matId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: Identificativo tratto carriera studente
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -29,6 +29,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 204 Response
|
- name: 204 Response
|
||||||
|
|||||||
+1
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 201 Response
|
- name: 201 Response
|
||||||
|
|||||||
+1
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 201 Response
|
- name: 201 Response
|
||||||
|
|||||||
+1
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 201 Response
|
- name: 201 Response
|
||||||
|
|||||||
+1
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 201 Response
|
- name: 201 Response
|
||||||
|
|||||||
+1
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 201 Response
|
- name: 201 Response
|
||||||
|
|||||||
+1
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 201 Response
|
- name: 201 Response
|
||||||
|
|||||||
+1
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 201 Response
|
- name: 201 Response
|
||||||
|
|||||||
+1
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 201 Response
|
- name: 201 Response
|
||||||
|
|||||||
+1
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 201 Response
|
- name: 201 Response
|
||||||
|
|||||||
+6
-5
@@ -7,12 +7,8 @@ info:
|
|||||||
|
|
||||||
http:
|
http:
|
||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/allegati/:persId/allegatiDicHand/"
|
url: "{{baseUrl}}/allegati/:persId/allegatiDicHand/?tipoHandicap="
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: tipoHandicap
|
- name: tipoHandicap
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -52,6 +48,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: flag che indica se l'allegato risulta visibile da web o meno
|
description: flag che indica se l'allegato risulta visibile da web o meno
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -59,6 +59,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+6
-5
@@ -7,12 +7,8 @@ info:
|
|||||||
|
|
||||||
http:
|
http:
|
||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/allegati/:persId/allegatiDocIdent/"
|
url: "{{baseUrl}}/allegati/:persId/allegatiDocIdent/?docIdentTipoCod="
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: docIdentTipoCod
|
- name: docIdentTipoCod
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -37,6 +33,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: flag che indica se l'allegato risulta visibile da web o meno
|
description: flag che indica se l'allegato risulta visibile da web o meno
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -44,6 +44,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+5
-4
@@ -9,10 +9,6 @@ http:
|
|||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/allegati/:stuId/allegatiMatricola/"
|
url: "{{baseUrl}}/allegati/:stuId/allegatiMatricola/"
|
||||||
params:
|
params:
|
||||||
- name: stuId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della carriera
|
|
||||||
- name: tipologiaAllegato
|
- name: tipologiaAllegato
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -28,6 +24,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: flag che indica se l'allegato risulta visibile da web o meno
|
description: flag che indica se l'allegato risulta visibile da web o meno
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: stuId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della carriera
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -35,6 +35,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+6
-5
@@ -7,12 +7,8 @@ info:
|
|||||||
|
|
||||||
http:
|
http:
|
||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/allegati/:persId/allegatiMatur/"
|
url: "{{baseUrl}}/allegati/:persId/allegatiMatur/?annoMaturita="
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: annoMaturita
|
- name: annoMaturita
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -42,6 +38,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: flag che indica se l'allegato risulta validato o meno
|
description: flag che indica se l'allegato risulta validato o meno
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -49,6 +49,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+5
-4
@@ -9,10 +9,6 @@ http:
|
|||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/allegati/autorizzati/:autorizzatoId/allegatiAutorizzato/"
|
url: "{{baseUrl}}/allegati/autorizzati/:autorizzatoId/allegatiAutorizzato/"
|
||||||
params:
|
params:
|
||||||
- name: autorizzatoId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: id dell'autorizzato
|
|
||||||
- name: tipologiaAllegato
|
- name: tipologiaAllegato
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -28,6 +24,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: flag che indica se l'allegato risulta visibile da web o meno
|
description: flag che indica se l'allegato risulta visibile da web o meno
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: autorizzatoId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: id dell'autorizzato
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -35,6 +35,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+6
-5
@@ -7,12 +7,8 @@ info:
|
|||||||
|
|
||||||
http:
|
http:
|
||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/allegati/autorizzati/:autorizzatoId/allegatiDocPers/"
|
url: "{{baseUrl}}/allegati/autorizzati/:autorizzatoId/allegatiDocPers/?docIdentTipoCod="
|
||||||
params:
|
params:
|
||||||
- name: autorizzatoId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: id dell'autorizzato
|
|
||||||
- name: docIdentTipoCod
|
- name: docIdentTipoCod
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -37,6 +33,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: flag che indica se l'allegato risulta visibile da web o meno
|
description: flag che indica se l'allegato risulta visibile da web o meno
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: autorizzatoId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: id dell'autorizzato
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -44,6 +44,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+6
-5
@@ -7,12 +7,8 @@ info:
|
|||||||
|
|
||||||
http:
|
http:
|
||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/allegati/:persId/allegatiTitIt/"
|
url: "{{baseUrl}}/allegati/:persId/allegatiTitIt/?tipoTititCod="
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: tipoTititCod
|
- name: tipoTititCod
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -37,6 +33,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: flag che indica se l'allegato risulta validato o meno
|
description: flag che indica se l'allegato risulta validato o meno
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -44,6 +44,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+6
-5
@@ -7,12 +7,8 @@ info:
|
|||||||
|
|
||||||
http:
|
http:
|
||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/allegati/:persId/allegatiTitStra/"
|
url: "{{baseUrl}}/allegati/:persId/allegatiTitStra/?aaConsegTit="
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: aaConsegTit
|
- name: aaConsegTit
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -37,6 +33,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: flag che indica se l'allegato risulta validato o meno
|
description: flag che indica se l'allegato risulta validato o meno
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -44,6 +44,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+6
-5
@@ -7,12 +7,8 @@ info:
|
|||||||
|
|
||||||
http:
|
http:
|
||||||
method: PUT
|
method: PUT
|
||||||
url: "{{baseUrl}}/soggettiEsterni/:soggEstId/consensi"
|
url: "{{baseUrl}}/soggettiEsterni/:soggEstId/consensi?procWebCod="
|
||||||
params:
|
params:
|
||||||
- name: soggEstId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: Identificativo soggetto esterno
|
|
||||||
- name: procWebCod
|
- name: procWebCod
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -22,6 +18,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: Codice ISO lingua
|
description: Codice ISO lingua
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: soggEstId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: Identificativo soggetto esterno
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -29,6 +29,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -21,6 +21,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -21,6 +21,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -15,6 +15,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -74,6 +74,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -69,6 +69,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -94,6 +94,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -15,6 +15,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -74,6 +74,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -64,6 +64,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -59,6 +59,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -54,6 +54,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -15,6 +15,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -9,10 +9,6 @@ http:
|
|||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/datiBancari/:persId"
|
url: "{{baseUrl}}/datiBancari/:persId"
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: start
|
- name: start
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -36,6 +32,10 @@ http:
|
|||||||
|
|
||||||
E' possibile indicare più campi separandoli da virgola (Es: +annoCorso,+adCod)
|
E' possibile indicare più campi separandoli da virgola (Es: +annoCorso,+adCod)
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -43,6 +43,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -24,6 +24,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+5
-4
@@ -9,10 +9,6 @@ http:
|
|||||||
method: PUT
|
method: PUT
|
||||||
url: "{{baseUrl}}/persone/:persId/dicHand"
|
url: "{{baseUrl}}/persone/:persId/dicHand"
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: dicHandId
|
- name: dicHandId
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -23,6 +19,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: tipo di handicap
|
description: tipo di handicap
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -30,6 +30,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+6
-5
@@ -9,6 +9,11 @@ http:
|
|||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/persone/:persId/dicHand/:dicHandId/allegatiDicHand/:allegatoId/blob"
|
url: "{{baseUrl}}/persone/:persId/dicHand/:dicHandId/allegatiDicHand/:allegatoId/blob"
|
||||||
params:
|
params:
|
||||||
|
- name: userId
|
||||||
|
value: ""
|
||||||
|
type: query
|
||||||
|
description: userId
|
||||||
|
disabled: true
|
||||||
- name: persId
|
- name: persId
|
||||||
value: ""
|
value: ""
|
||||||
type: path
|
type: path
|
||||||
@@ -21,11 +26,6 @@ http:
|
|||||||
value: ""
|
value: ""
|
||||||
type: path
|
type: path
|
||||||
description: identificativo allegato
|
description: identificativo allegato
|
||||||
- name: userId
|
|
||||||
value: ""
|
|
||||||
type: query
|
|
||||||
description: userId
|
|
||||||
disabled: true
|
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -33,6 +33,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+11
-10
@@ -9,6 +9,16 @@ http:
|
|||||||
method: PUT
|
method: PUT
|
||||||
url: "{{baseUrl}}/persone/:persId/dic-hand/:dicHandId/misure-compensative-dicHand/:dicHandMisureId"
|
url: "{{baseUrl}}/persone/:persId/dic-hand/:dicHandId/misure-compensative-dicHand/:dicHandMisureId"
|
||||||
params:
|
params:
|
||||||
|
- name: tipoHandicap
|
||||||
|
value: ""
|
||||||
|
type: query
|
||||||
|
description: tipo di handicap
|
||||||
|
disabled: true
|
||||||
|
- name: misuraCompensativaCod
|
||||||
|
value: ""
|
||||||
|
type: query
|
||||||
|
description: codice misura compensativa
|
||||||
|
disabled: true
|
||||||
- name: persId
|
- name: persId
|
||||||
value: ""
|
value: ""
|
||||||
type: path
|
type: path
|
||||||
@@ -21,16 +31,6 @@ http:
|
|||||||
value: ""
|
value: ""
|
||||||
type: path
|
type: path
|
||||||
description: Identificativo associazione dichiarazione e misura compensativa.
|
description: Identificativo associazione dichiarazione e misura compensativa.
|
||||||
- name: tipoHandicap
|
|
||||||
value: ""
|
|
||||||
type: query
|
|
||||||
description: tipo di handicap
|
|
||||||
disabled: true
|
|
||||||
- name: misuraCompensativaCod
|
|
||||||
value: ""
|
|
||||||
type: query
|
|
||||||
description: codice misura compensativa
|
|
||||||
disabled: true
|
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -38,6 +38,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+6
-5
@@ -7,12 +7,8 @@ info:
|
|||||||
|
|
||||||
http:
|
http:
|
||||||
method: PUT
|
method: PUT
|
||||||
url: "{{baseUrl}}/persone/:persId/agg-dicHandMisComp"
|
url: "{{baseUrl}}/persone/:persId/agg-dicHandMisComp?dicHandId="
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: dicHandId
|
- name: dicHandId
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -32,6 +28,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: codice misura compensativa
|
description: codice misura compensativa
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -39,6 +39,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+5
-4
@@ -9,10 +9,6 @@ http:
|
|||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/persone/:persId/misure-compensative-dicHand"
|
url: "{{baseUrl}}/persone/:persId/misure-compensative-dicHand"
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: dicHandId
|
- name: dicHandId
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -23,6 +19,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: tipo di handicap
|
description: tipo di handicap
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -30,6 +30,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+5
-4
@@ -9,15 +9,15 @@ http:
|
|||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/persone/:persId/dicHand"
|
url: "{{baseUrl}}/persone/:persId/dicHand"
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: dicHandId
|
- name: dicHandId
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
description: identificativo dichiarazione invalidità
|
description: identificativo dichiarazione invalidità
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -25,6 +25,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -24,6 +24,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -9,10 +9,6 @@ http:
|
|||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/docenti/:docenteId"
|
url: "{{baseUrl}}/docenti/:docenteId"
|
||||||
params:
|
params:
|
||||||
- name: docenteId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: id del docente
|
|
||||||
- name: fields
|
- name: fields
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -43,6 +39,10 @@ http:
|
|||||||
* Per visualizzare tutte le proprietà di childObj utilizzare la notazione `childProp.*`
|
* Per visualizzare tutte le proprietà di childObj utilizzare la notazione `childProp.*`
|
||||||
* Per visualizzare tutte le proprietà di childObj e di tutti i discendenti utilizzare la notazione `childProp.**`
|
* Per visualizzare tutte le proprietà di childObj e di tutti i discendenti utilizzare la notazione `childProp.**`
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: docenteId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: id del docente
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -50,6 +50,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -2,7 +2,10 @@ name: "ESSE3 Anagrafica Pre-Prod #2"
|
|||||||
variables:
|
variables:
|
||||||
- name: esse3apiRootUrl
|
- name: esse3apiRootUrl
|
||||||
value: https://unipr2.esse3.pp.cineca.it
|
value: https://unipr2.esse3.pp.cineca.it
|
||||||
|
description: ""
|
||||||
- name: esse3apiUsername
|
- name: esse3apiUsername
|
||||||
value: "{{process.env.esse3apiUsername}}"
|
value: "{{process.env.esse3apiUsername}}"
|
||||||
|
description: ""
|
||||||
- name: esse3apiPassword
|
- name: esse3apiPassword
|
||||||
value: "{{process.env.esse3apiPassword}}"
|
value: "{{process.env.esse3apiPassword}}"
|
||||||
|
description: ""
|
||||||
|
|||||||
+1
@@ -21,6 +21,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+5
-4
@@ -9,15 +9,15 @@ http:
|
|||||||
method: PATCH
|
method: PATCH
|
||||||
url: "{{baseUrl}}/persone/:persId/dismettiEmail"
|
url: "{{baseUrl}}/persone/:persId/dismettiEmail"
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: emailAte
|
- name: emailAte
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
description: indirizzio email istituzionale da dismettere
|
description: indirizzio email istituzionale da dismettere
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -25,6 +25,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+6
-5
@@ -7,12 +7,8 @@ info:
|
|||||||
|
|
||||||
http:
|
http:
|
||||||
method: PUT
|
method: PUT
|
||||||
url: "{{baseUrl}}/persone/:persId/consensi"
|
url: "{{baseUrl}}/persone/:persId/consensi?procWebCod="
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: procWebCod
|
- name: procWebCod
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -32,6 +28,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: identificativo anno accademico
|
description: identificativo anno accademico
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -39,6 +39,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+6
-5
@@ -7,16 +7,16 @@ info:
|
|||||||
|
|
||||||
http:
|
http:
|
||||||
method: PUT
|
method: PUT
|
||||||
url: "{{baseUrl}}/persone/:persId/emailAte"
|
url: "{{baseUrl}}/persone/:persId/emailAte?emailAte="
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: emailAte
|
- name: emailAte
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
description: indirizzo email istituzionale
|
description: indirizzo email istituzionale
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -24,6 +24,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+5
-4
@@ -9,15 +9,15 @@ http:
|
|||||||
method: PUT
|
method: PUT
|
||||||
url: "{{baseUrl}}/persone/:persId/email"
|
url: "{{baseUrl}}/persone/:persId/email"
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: email
|
- name: email
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
description: indirizzo email personale
|
description: indirizzo email personale
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -25,6 +25,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -15,6 +15,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 201 Response
|
- name: 201 Response
|
||||||
|
|||||||
+6
-5
@@ -7,12 +7,8 @@ info:
|
|||||||
|
|
||||||
http:
|
http:
|
||||||
method: POST
|
method: POST
|
||||||
url: "{{baseUrl}}/persone/:persId/ins-dicHandMisComp"
|
url: "{{baseUrl}}/persone/:persId/ins-dicHandMisComp?dicHandId="
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: dicHandId
|
- name: dicHandId
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -22,6 +18,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: tipo di handicap
|
description: tipo di handicap
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -29,6 +29,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 201 Response
|
- name: 201 Response
|
||||||
|
|||||||
+6
-5
@@ -9,6 +9,11 @@ http:
|
|||||||
method: POST
|
method: POST
|
||||||
url: "{{baseUrl}}/persone/:persId/dic-hand/:dicHandId/misure-compensative-dicHand"
|
url: "{{baseUrl}}/persone/:persId/dic-hand/:dicHandId/misure-compensative-dicHand"
|
||||||
params:
|
params:
|
||||||
|
- name: tipoHandicap
|
||||||
|
value: ""
|
||||||
|
type: query
|
||||||
|
description: tipo di handicap
|
||||||
|
disabled: true
|
||||||
- name: persId
|
- name: persId
|
||||||
value: ""
|
value: ""
|
||||||
type: path
|
type: path
|
||||||
@@ -17,11 +22,6 @@ http:
|
|||||||
value: ""
|
value: ""
|
||||||
type: path
|
type: path
|
||||||
description: identificativo dichiarazione invalidità
|
description: identificativo dichiarazione invalidità
|
||||||
- name: tipoHandicap
|
|
||||||
value: ""
|
|
||||||
type: query
|
|
||||||
description: tipo di handicap
|
|
||||||
disabled: true
|
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -29,6 +29,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 201 Response
|
- name: 201 Response
|
||||||
|
|||||||
+6
-5
@@ -7,12 +7,8 @@ info:
|
|||||||
|
|
||||||
http:
|
http:
|
||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/persone/:persId/consensi"
|
url: "{{baseUrl}}/persone/:persId/consensi?procWebCod="
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: procWebCod
|
- name: procWebCod
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -32,6 +28,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: identificativo anno accademico
|
description: identificativo anno accademico
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -39,6 +39,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -46,6 +46,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+5
-4
@@ -9,10 +9,6 @@ http:
|
|||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/titoli/:persId"
|
url: "{{baseUrl}}/titoli/:persId"
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: stuId
|
- name: stuId
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -33,6 +29,10 @@ http:
|
|||||||
* Per visualizzare tutte le proprietà di childObj utilizzare la notazione `childProp.*`
|
* Per visualizzare tutte le proprietà di childObj utilizzare la notazione `childProp.*`
|
||||||
* Per visualizzare tutte le proprietà di childObj e di tutti i discendenti utilizzare la notazione `childProp.**`
|
* Per visualizzare tutte le proprietà di childObj e di tutti i discendenti utilizzare la notazione `childProp.**`
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -40,6 +40,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -24,6 +24,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -64,6 +64,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -89,6 +89,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+5
-4
@@ -9,10 +9,6 @@ http:
|
|||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/persone/:persId/misure-compensative"
|
url: "{{baseUrl}}/persone/:persId/misure-compensative"
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: dataInizioApp
|
- name: dataInizioApp
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -50,6 +46,10 @@ http:
|
|||||||
* Per visualizzare tutte le proprietà di childObj utilizzare la notazione `childProp.*`
|
* Per visualizzare tutte le proprietà di childObj utilizzare la notazione `childProp.*`
|
||||||
* Per visualizzare tutte le proprietà di childObj e di tutti i discendenti utilizzare la notazione `childProp.**`
|
* Per visualizzare tutte le proprietà di childObj e di tutti i discendenti utilizzare la notazione `childProp.**`
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -57,6 +57,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+5
-4
@@ -9,10 +9,6 @@ http:
|
|||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/persone/:persId/autorizzati/"
|
url: "{{baseUrl}}/persone/:persId/autorizzati/"
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: autorizzatoId
|
- name: autorizzatoId
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -33,6 +29,10 @@ http:
|
|||||||
* Per visualizzare tutte le proprietà di childObj utilizzare la notazione `childProp.*`
|
* Per visualizzare tutte le proprietà di childObj utilizzare la notazione `childProp.*`
|
||||||
* Per visualizzare tutte le proprietà di childObj e di tutti i discendenti utilizzare la notazione `childProp.**`
|
* Per visualizzare tutte le proprietà di childObj e di tutti i discendenti utilizzare la notazione `childProp.**`
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -40,6 +40,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+5
-4
@@ -9,15 +9,15 @@ http:
|
|||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/persone/:persId/tutori/"
|
url: "{{baseUrl}}/persone/:persId/tutori/"
|
||||||
params:
|
params:
|
||||||
- name: persId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: identificativo della persona
|
|
||||||
- name: filtroTutori
|
- name: filtroTutori
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
description: "1: recupera tutti i tutori. 0 (o nullo): recupera solo i tutori validi."
|
description: "1: recupera tutti i tutori. 0 (o nullo): recupera solo i tutori validi."
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: persId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: identificativo della persona
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -25,6 +25,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 204 Response
|
- name: 204 Response
|
||||||
|
|||||||
+1
@@ -31,6 +31,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+6
-5
@@ -7,12 +7,8 @@ info:
|
|||||||
|
|
||||||
http:
|
http:
|
||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/soggettiEsterni/:soggEstId/consensi"
|
url: "{{baseUrl}}/soggettiEsterni/:soggEstId/consensi?procWebCod="
|
||||||
params:
|
params:
|
||||||
- name: soggEstId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: Identificativo soggetto esterno
|
|
||||||
- name: procWebCod
|
- name: procWebCod
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -22,6 +18,10 @@ http:
|
|||||||
type: query
|
type: query
|
||||||
description: Codice ISO lingua
|
description: Codice ISO lingua
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: soggEstId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: Identificativo soggetto esterno
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -29,6 +29,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+5
-4
@@ -9,10 +9,6 @@ http:
|
|||||||
method: GET
|
method: GET
|
||||||
url: "{{baseUrl}}/soggettiEsterniReplica/:soggEstId"
|
url: "{{baseUrl}}/soggettiEsterniReplica/:soggEstId"
|
||||||
params:
|
params:
|
||||||
- name: soggEstId
|
|
||||||
value: ""
|
|
||||||
type: path
|
|
||||||
description: Identificativo soggetto esterno
|
|
||||||
- name: optionalFields
|
- name: optionalFields
|
||||||
value: ""
|
value: ""
|
||||||
type: query
|
type: query
|
||||||
@@ -28,6 +24,10 @@ http:
|
|||||||
* Per visualizzare tutte le proprietà di childObj utilizzare la notazione `childProp.*`
|
* Per visualizzare tutte le proprietà di childObj utilizzare la notazione `childProp.*`
|
||||||
* Per visualizzare tutte le proprietà di childObj e di tutti i discendenti utilizzare la notazione `childProp.**`
|
* Per visualizzare tutte le proprietà di childObj e di tutti i discendenti utilizzare la notazione `childProp.**`
|
||||||
disabled: true
|
disabled: true
|
||||||
|
- name: soggEstId
|
||||||
|
value: ""
|
||||||
|
type: path
|
||||||
|
description: Identificativo soggetto esterno
|
||||||
auth: inherit
|
auth: inherit
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
@@ -35,6 +35,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -114,6 +114,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
+1
@@ -114,6 +114,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
docs: |
|
docs: |
|
||||||
Verifica le credenziali di un utente fornite tramite header http "Authorization: Basic ...."
|
Verifica le credenziali di un utente fornite tramite header http "Authorization: Basic ...."
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -2,7 +2,10 @@ name: "ESSE3 Common Auth Pre-Prod #2"
|
|||||||
variables:
|
variables:
|
||||||
- name: esse3apiUsername
|
- name: esse3apiUsername
|
||||||
value: "{{process.env.esse3apiUsername}}"
|
value: "{{process.env.esse3apiUsername}}"
|
||||||
|
description: ""
|
||||||
- name: esse3apiPassword
|
- name: esse3apiPassword
|
||||||
value: "{{process.env.esse3apiPassword}}"
|
value: "{{process.env.esse3apiPassword}}"
|
||||||
|
description: ""
|
||||||
- name: esse3apiRootUrl
|
- name: esse3apiRootUrl
|
||||||
value: https://unipr2.esse3.pp.cineca.it/e3rest/api
|
value: https://unipr2.esse3.pp.cineca.it/e3rest/api
|
||||||
|
description: ""
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: 200 Response
|
- name: 200 Response
|
||||||
|
|||||||
@@ -21,3 +21,4 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|||||||
@@ -13,3 +13,4 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|||||||
@@ -21,3 +21,4 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|||||||
@@ -22,3 +22,4 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|||||||
@@ -13,3 +13,4 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|||||||
@@ -216,6 +216,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: Autorizzatori - Success
|
- name: Autorizzatori - Success
|
||||||
|
|||||||
@@ -53,6 +53,7 @@ settings:
|
|||||||
timeout: 0
|
timeout: 0
|
||||||
followRedirects: true
|
followRedirects: true
|
||||||
maxRedirects: 5
|
maxRedirects: 5
|
||||||
|
forwardAuthorizationHeader: true
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- name: Dipartimento - Success
|
- name: Dipartimento - Success
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user