POST v1/Aviso/{id}
Obtiene un aviso
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
id del aviso |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
AvisoItem| Name | Description | Type | Additional information |
|---|---|---|---|
| Date |
Fecha del aviso |
string |
None. |
| Asunto |
Asunto del aviso |
string |
None. |
| Texto |
Cuerpo del aviso |
string |
None. |
| Url |
Url complementaria información del Aviso |
string |
None. |
| UrlImage |
Url a la imagen que acompaña el aviso |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Date": "sample string 1",
"Asunto": "sample string 2",
"Texto": "sample string 3",
"Url": "sample string 4",
"UrlImage": "sample string 5"
}
application/xml, text/xml
Sample:
<AvisoItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FeAndaluciaWebApi.Business"> <Asunto>sample string 2</Asunto> <Date>sample string 1</Date> <Texto>sample string 3</Texto> <Url>sample string 4</Url> <UrlImage>sample string 5</UrlImage> </AvisoItem>