GET v1/Clientes/GetEstadistica?Codigo={Codigo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Codigo | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SFC_ESTCLIENResult| Name | Description | Type | Additional information |
|---|---|---|---|
| TIPO | string |
None. |
|
| CODIGO | string |
None. |
|
| DESCRIPCION | string |
None. |
|
| UDS | decimal number |
None. |
|
| IMP | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TIPO": "sample string 1",
"CODIGO": "sample string 2",
"DESCRIPCION": "sample string 3",
"UDS": 1.1,
"IMP": 1.1
},
{
"TIPO": "sample string 1",
"CODIGO": "sample string 2",
"DESCRIPCION": "sample string 3",
"UDS": 1.1,
"IMP": 1.1
}
]
application/xml, text/xml
Sample:
<ArrayOfSFC_ESTCLIENResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIHero7.Data">
<SFC_ESTCLIENResult>
<CODIGO>sample string 2</CODIGO>
<DESCRIPCION>sample string 3</DESCRIPCION>
<IMP>1.1</IMP>
<TIPO>sample string 1</TIPO>
<UDS>1.1</UDS>
</SFC_ESTCLIENResult>
<SFC_ESTCLIENResult>
<CODIGO>sample string 2</CODIGO>
<DESCRIPCION>sample string 3</DESCRIPCION>
<IMP>1.1</IMP>
<TIPO>sample string 1</TIPO>
<UDS>1.1</UDS>
</SFC_ESTCLIENResult>
</ArrayOfSFC_ESTCLIENResult>