GET api/mims/getsaldo?matricola={matricola}&pw={pw}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
matricola

string

Required

pw

string

Required

Body Parameters

None.

Response Information

Resource Description

BaseSaldoModel
NameDescriptionTypeAdditional information
Err

boolean

None.

ErrorMessage

string

None.

ErrorAuth

boolean

None.

TentativiAuth

integer

None.

Saldo

integer

None.

Importo

decimal number

None.

Errore

boolean

None.

MessaggioErrore

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Err": true,
  "ErrorMessage": "sample string 2",
  "ErrorAuth": true,
  "TentativiAuth": 4,
  "Saldo": 5,
  "Importo": 6.0,
  "Errore": true,
  "MessaggioErrore": "sample string 8"
}

application/xml, text/xml

Sample:
<BaseSaldoModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PagoPaApi">
  <Errore>true</Errore>
  <MessaggioErrore>sample string 8</MessaggioErrore>
  <Err>true</Err>
  <ErrorAuth>true</ErrorAuth>
  <ErrorMessage>sample string 2</ErrorMessage>
  <Importo>6</Importo>
  <Saldo>5</Saldo>
  <TentativiAuth>4</TentativiAuth>
</BaseSaldoModel>