GET api/provider/recentrequestors?idPrestador={idPrestador}&idAfiliado={idAfiliado}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| idPrestador | integer |
Required |
|
| idAfiliado | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PrestadorModel| Name | Description | Type | Additional information |
|---|---|---|---|
| IdPrestador | integer |
None. |
|
| MatriculaProvincial | integer |
None. |
|
| MatriculaNacional | integer |
None. |
|
| ApellidoNombre | string |
None. |
|
| UrlImagen | string |
None. |
Response Formats
application/json, text/javascript, text/html, text/json
Sample:
[
{
"IdPrestador": 1,
"MatriculaProvincial": 2,
"MatriculaNacional": 3,
"ApellidoNombre": "sample string 4",
"UrlImagen": "sample string 5"
},
{
"IdPrestador": 1,
"MatriculaProvincial": 2,
"MatriculaNacional": 3,
"ApellidoNombre": "sample string 4",
"UrlImagen": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfPrestadorModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tecnext.SaludTotal.WebAPI.Models">
<PrestadorModel>
<ApellidoNombre>sample string 4</ApellidoNombre>
<IdPrestador>1</IdPrestador>
<MatriculaNacional>3</MatriculaNacional>
<MatriculaProvincial>2</MatriculaProvincial>
<UrlImagen>sample string 5</UrlImagen>
</PrestadorModel>
<PrestadorModel>
<ApellidoNombre>sample string 4</ApellidoNombre>
<IdPrestador>1</IdPrestador>
<MatriculaNacional>3</MatriculaNacional>
<MatriculaProvincial>2</MatriculaProvincial>
<UrlImagen>sample string 5</UrlImagen>
</PrestadorModel>
</ArrayOfPrestadorModel>