POST api/appcreditimims/getcreditifull?matricola={matricola}&password={password}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| matricola | string |
Required |
|
| password | string |
Required |
Body Parameters
None.
Response Information
Resource Description
BaseSaldoModel| Name | Description | Type | Additional 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>