GET api/Colegiado?numero={numero}&token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| numero | integer |
Required |
|
| token | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Colegiado| Name | Description | Type | Additional information |
|---|---|---|---|
| Numero | integer |
None. |
|
| Nombre | string |
None. |
|
| Apellidos | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Numero": 1,
"Nombre": "sample string 2",
"Apellidos": "sample string 3"
}
application/xml, text/xml
Sample:
<Colegiado xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.model"> <Apellidos>sample string 3</Apellidos> <Nombre>sample string 2</Nombre> <Numero>1</Numero> </Colegiado>