GET apiv2/amministrazione/aziende/{soloAttive}

Elenco Aziende

Request Information

URI Parameters

NomeDescrizioneTipoInformazioni Aggiuntive
soloAttive

Solo le Aziende Attive. False = Tutte; True = Solo Attive

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

Collection of Azienda
NomeDescrizioneTipoInformazioni Aggiuntive
CodAzi

Codice Azienda

string

Nessuna.

Descrizione

Descrizione Azienda

string

Nessuna.

Attivo

Stato Azienda

boolean

Nessuna.

Response Formats

application/json, text/json

Sample:
[
  {
    "codAzi": "sample string 1",
    "descrizione": "sample string 2",
    "attivo": true
  },
  {
    "codAzi": "sample string 1",
    "descrizione": "sample string 2",
    "attivo": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfAzienda xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Gift.Models">
  <Azienda>
    <Attivo>true</Attivo>
    <CodAzi>sample string 1</CodAzi>
    <Descrizione>sample string 2</Descrizione>
  </Azienda>
  <Azienda>
    <Attivo>true</Attivo>
    <CodAzi>sample string 1</CodAzi>
    <Descrizione>sample string 2</Descrizione>
  </Azienda>
</ArrayOfAzienda>