GET api/Cuentas?codigoEmpresa={codigoEmpresa}&cuenta={cuenta}&usuario={usuario}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| codigoEmpresa | string |
Required |
|
| cuenta | string |
Required |
|
| usuario | string |
Required |
Body Parameters
None.
Response Information
Resource Description
CuentaRest| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Cuenta | string |
None. |
|
| Usuario | string |
None. |
|
| Perfil | integer |
None. |
|
| Empresa | integer |
None. |
|
| Server | string |
None. |
|
| Puerto | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Cuenta": "sample string 2",
"Usuario": "sample string 3",
"Perfil": 4,
"Empresa": 5,
"Server": "sample string 6",
"Puerto": "sample string 7"
}
application/xml, text/xml
Sample:
<CuentaRest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Servicios_Ayax.Model"> <Cuenta>sample string 2</Cuenta> <Empresa>5</Empresa> <Id>1</Id> <Perfil>4</Perfil> <Puerto>sample string 7</Puerto> <Server>sample string 6</Server> <Usuario>sample string 3</Usuario> </CuentaRest>