GET api/Splash
Obtiene la imagen de splash que se muestra en el inicio de la app
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
SplashModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UrlSplash | string |
None. |
|
| Texto | boolean |
None. |
|
| UrlTexto | string |
None. |
|
| Fondo_Imagen | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"UrlSplash": "sample string 1",
"Texto": true,
"UrlTexto": "sample string 2",
"Fondo_Imagen": "sample string 3"
}
text/html
Sample:
{"UrlSplash":"sample string 1","Texto":true,"UrlTexto":"sample string 2","Fondo_Imagen":"sample string 3"}
application/xml, text/xml
Sample:
<SplashModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MaratonPackages_WS.Models"> <Fondo_Imagen>sample string 3</Fondo_Imagen> <Texto>true</Texto> <UrlSplash>sample string 1</UrlSplash> <UrlTexto>sample string 2</UrlTexto> </SplashModel>