GET api/unitedweb/getAllBanners

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

APIDataResponseOfListOfBanner
NameDescriptionTypeAdditional information
code

integer

None.

message

string

None.

status

string

None.

data

Collection of Banner

None.

Response Formats

application/json, text/json

Sample:
{
  "code": 1,
  "message": "sample string 2",
  "status": "sample string 3",
  "data": [
    {
      "id": 1,
      "name": "sample string 2",
      "image_path": "sample string 3",
      "type": 4,
      "status": 1
    },
    {
      "id": 1,
      "name": "sample string 2",
      "image_path": "sample string 3",
      "type": 4,
      "status": 1
    }
  ]
}

application/xml, text/xml

Sample:
<APIDataResponseOfArrayOfBannerAmpdAh_Se xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <code>1</code>
  <data xmlns:d2p1="http://schemas.datacontract.org/2004/07/WebAPI.Entity">
    <d2p1:Banner>
      <d2p1:id>1</d2p1:id>
      <d2p1:image_path>sample string 3</d2p1:image_path>
      <d2p1:name>sample string 2</d2p1:name>
      <d2p1:status>1</d2p1:status>
      <d2p1:type>4</d2p1:type>
    </d2p1:Banner>
    <d2p1:Banner>
      <d2p1:id>1</d2p1:id>
      <d2p1:image_path>sample string 3</d2p1:image_path>
      <d2p1:name>sample string 2</d2p1:name>
      <d2p1:status>1</d2p1:status>
      <d2p1:type>4</d2p1:type>
    </d2p1:Banner>
  </data>
  <message>sample string 2</message>
  <status>sample string 3</status>
</APIDataResponseOfArrayOfBannerAmpdAh_Se>