GET api/contactos/cliente/{idcliente}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
idcliente | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ContactoName | Description | Type | Additional information |
---|---|---|---|
Nombre | string |
None. |
|
Telefono | string |
None. |
|
Correo | string |
None. |
|
Activo | boolean |
None. |
|
Id_Contacto | integer |
None. |
|
Id_FormaPago | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Nombre": "sample string 1", "Telefono": "sample string 2", "Correo": "sample string 3", "Activo": true, "Id_Contacto": 5, "Id_FormaPago": 6 }, { "Nombre": "sample string 1", "Telefono": "sample string 2", "Correo": "sample string 3", "Activo": true, "Id_Contacto": 5, "Id_FormaPago": 6 } ]
application/xml, text/xml
Sample:
<ArrayOfContacto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiConex.Models"> <Contacto> <Activo>true</Activo> <Correo>sample string 3</Correo> <Id_Contacto>5</Id_Contacto> <Id_FormaPago>6</Id_FormaPago> <Nombre>sample string 1</Nombre> <Telefono>sample string 2</Telefono> </Contacto> <Contacto> <Activo>true</Activo> <Correo>sample string 3</Correo> <Id_Contacto>5</Id_Contacto> <Id_FormaPago>6</Id_FormaPago> <Nombre>sample string 1</Nombre> <Telefono>sample string 2</Telefono> </Contacto> </ArrayOfContacto>