POST api/formacion/BuscadorFormacion
Request Information
URI Parameters
None.
Body Parameters
Formacion| Name | Description | Type | Additional information |
|---|---|---|---|
| presencial | boolean |
None. |
|
| distancia | boolean |
None. |
|
| online | boolean |
None. |
|
| titulo | string |
None. |
|
| idarea | integer |
None. |
|
| lugar | string |
None. |
|
| anio | integer |
None. |
|
| mes | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"presencial": true,
"distancia": true,
"online": true,
"titulo": "sample string 1",
"idarea": 1,
"lugar": "sample string 2",
"anio": 1,
"mes": 1
}
application/xml, text/xml
Sample:
<Formacion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Web.Models"> <anio>1</anio> <distancia>true</distancia> <idarea>1</idarea> <lugar>sample string 2</lugar> <mes>1</mes> <online>true</online> <presencial>true</presencial> <titulo>sample string 1</titulo> </Formacion>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |