GET api/Prestadores?Letra={Letra}
Devuelve una lista de las Institucions/Prestadores con CIU que inicia con la letra indicada).
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Letra |
Letra. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Lista de Institucions/Prestadores
Collection of PrestadoresVMName | Description | Type | Additional information |
---|---|---|---|
IdPrestador | integer |
None. |
|
CIU | string |
None. |
|
Nombre | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "IdPrestador": 1, "CIU": "sample string 2", "Nombre": "sample string 3" }, { "IdPrestador": 1, "CIU": "sample string 2", "Nombre": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfPrestadoresVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WsIosep.Models.ViewModel"> <PrestadoresVM> <CIU>sample string 2</CIU> <IdPrestador>1</IdPrestador> <Nombre>sample string 3</Nombre> </PrestadoresVM> <PrestadoresVM> <CIU>sample string 2</CIU> <IdPrestador>1</IdPrestador> <Nombre>sample string 3</Nombre> </PrestadoresVM> </ArrayOfPrestadoresVM>