GET api/GetFirstProject

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

FirstProjectModel
NameDescriptionTypeAdditional information
project

Collection of AllProjectModel

None.

Count

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "project": [
    {
      "Cat_Name": "sample string 1",
      "Name": "sample string 2",
      "Id": 1,
      "image": "sample string 3",
      "rating": 1.0,
      "Cost": "sample string 4",
      "OfferAmount": "sample string 5",
      "Cat_Id": 1,
      "SubscribeCount": 6
    },
    {
      "Cat_Name": "sample string 1",
      "Name": "sample string 2",
      "Id": 1,
      "image": "sample string 3",
      "rating": 1.0,
      "Cost": "sample string 4",
      "OfferAmount": "sample string 5",
      "Cat_Id": 1,
      "SubscribeCount": 6
    }
  ],
  "Count": 1
}

application/xml, text/xml

Sample:
<FirstProjectModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VullamAPIProject.Models">
  <Count>1</Count>
  <project>
    <AllProjectModel>
      <Cat_Id>1</Cat_Id>
      <Cat_Name>sample string 1</Cat_Name>
      <Cost>sample string 4</Cost>
      <Id>1</Id>
      <Name>sample string 2</Name>
      <OfferAmount>sample string 5</OfferAmount>
      <SubscribeCount>6</SubscribeCount>
      <image>sample string 3</image>
      <rating>1</rating>
    </AllProjectModel>
    <AllProjectModel>
      <Cat_Id>1</Cat_Id>
      <Cat_Name>sample string 1</Cat_Name>
      <Cost>sample string 4</Cost>
      <Id>1</Id>
      <Name>sample string 2</Name>
      <OfferAmount>sample string 5</OfferAmount>
      <SubscribeCount>6</SubscribeCount>
      <image>sample string 3</image>
      <rating>1</rating>
    </AllProjectModel>
  </project>
</FirstProjectModel>