GET v2/apps/{id}/footer
Fetch the Footer Details of an App from the provided App Id
Request Information
URI Parameters
| Name | Type | Description | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| id | integer |
The Application Id of App to Fetch
Additional Info :
Required |
|||||||||||
Body Parameters
None.
Response Information
Resource Description
AppFooterResponse| Name | Type | Description | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Id | integer |
App Id |
|||||||||||
| Name | string |
App Name |
|||||||||||
| FooterType | integer |
Current Footer Type (0 : No Footer) (1 : Icon and Text) (2 : Text Only) (3 : Icon Only) |
|||||||||||
| FooterData | Collection of FooterItem |
Current List of Footer Items |
|||||||||||
Response Formats
{
"id": 2,
"name": "My Cool App",
"footerType": 1,
"footerData": [
{
"title": "Home",
"url": "http://myhomepage.com",
"image": "glyphicon glyphicon-home",
"imageCode": null,
"fColor": "000000",
"bColor": "ffffff",
"sTabColor": "ffffff",
"isBurger": false,
"type": null
},
{
"title": "Phone",
"url": "tel:314-433-3222",
"image": "fa fa-phone-square",
"imageCode": null,
"fColor": "000000",
"bColor": "ffffff",
"sTabColor": "ffffff",
"isBurger": false,
"type": null
},
{
"title": "Push Log",
"url": "native:pushlog",
"image": "fa fa-comments-o",
"imageCode": null,
"fColor": "000000",
"bColor": "ffffff",
"sTabColor": "ffffff",
"isBurger": false,
"type": null
},
{
"title": "Email",
"url": "mailto:support@appnotch.com",
"image": "glyphicon glyphicon-envelope",
"imageCode": null,
"fColor": "000000",
"bColor": "ffffff",
"sTabColor": "ffffff",
"isBurger": false,
"type": null
},
{
"title": "Social",
"url": "http://facebook.com/appnotch",
"image": "glyphicon glyphicon-globe",
"imageCode": null,
"fColor": "000000",
"bColor": "ffffff",
"sTabColor": "ffffff",
"isBurger": false,
"type": null
}
]
}
<AppFooterResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppNotch.Converter.Api.Server.Models">
<FooterData>
<FooterItem>
<BColor>ffffff</BColor>
<FColor>000000</FColor>
<Image>glyphicon glyphicon-home</Image>
<ImageCode i:nil="true" />
<IsBurger>false</IsBurger>
<STabColor>ffffff</STabColor>
<Title>Home</Title>
<Type i:nil="true" />
<Url>http://myhomepage.com</Url>
</FooterItem>
<FooterItem>
<BColor>ffffff</BColor>
<FColor>000000</FColor>
<Image>fa fa-phone-square</Image>
<ImageCode i:nil="true" />
<IsBurger>false</IsBurger>
<STabColor>ffffff</STabColor>
<Title>Phone</Title>
<Type i:nil="true" />
<Url>tel:314-433-3222</Url>
</FooterItem>
<FooterItem>
<BColor>ffffff</BColor>
<FColor>000000</FColor>
<Image>fa fa-comments-o</Image>
<ImageCode i:nil="true" />
<IsBurger>false</IsBurger>
<STabColor>ffffff</STabColor>
<Title>Push Log</Title>
<Type i:nil="true" />
<Url>native:pushlog</Url>
</FooterItem>
<FooterItem>
<BColor>ffffff</BColor>
<FColor>000000</FColor>
<Image>glyphicon glyphicon-envelope</Image>
<ImageCode i:nil="true" />
<IsBurger>false</IsBurger>
<STabColor>ffffff</STabColor>
<Title>Email</Title>
<Type i:nil="true" />
<Url>mailto:support@appnotch.com</Url>
</FooterItem>
<FooterItem>
<BColor>ffffff</BColor>
<FColor>000000</FColor>
<Image>glyphicon glyphicon-globe</Image>
<ImageCode i:nil="true" />
<IsBurger>false</IsBurger>
<STabColor>ffffff</STabColor>
<Title>Social</Title>
<Type i:nil="true" />
<Url>http://facebook.com/appnotch</Url>
</FooterItem>
</FooterData>
<FooterType>1</FooterType>
<Id>2</Id>
<Name>My Cool App</Name>
</AppFooterResponse>