GET api/Contactos?codigoEmpresa={codigoEmpresa}&cuenta={cuenta}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| codigoEmpresa | string |
Required |
|
| cuenta | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ContactosRest| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Cuenta | integer |
None. |
|
| Codigo_Id | string |
None. |
|
| Nombre_Mix | string |
None. |
|
| AreaCode | string |
None. |
|
| Telefono | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Cuenta": 2,
"Codigo_Id": "sample string 3",
"Nombre_Mix": "sample string 4",
"AreaCode": "sample string 5",
"Telefono": "sample string 6"
},
{
"Id": 1,
"Cuenta": 2,
"Codigo_Id": "sample string 3",
"Nombre_Mix": "sample string 4",
"AreaCode": "sample string 5",
"Telefono": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfContactosRest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Servicios_Ayax.Model">
<ContactosRest>
<AreaCode>sample string 5</AreaCode>
<Codigo_Id>sample string 3</Codigo_Id>
<Cuenta>2</Cuenta>
<Id>1</Id>
<Nombre_Mix>sample string 4</Nombre_Mix>
<Telefono>sample string 6</Telefono>
</ContactosRest>
<ContactosRest>
<AreaCode>sample string 5</AreaCode>
<Codigo_Id>sample string 3</Codigo_Id>
<Cuenta>2</Cuenta>
<Id>1</Id>
<Nombre_Mix>sample string 4</Nombre_Mix>
<Telefono>sample string 6</Telefono>
</ContactosRest>
</ArrayOfContactosRest>