GET api/Profile/GetFeedbackType

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

FeedBackTypeResponsedata
NameDescriptionTypeAdditional information
Responsecode

string

None.

ResponseDescription

string

None.

FeedBackTypeList

Collection of tbl_FeedBackType

None.

Response Formats

application/json, text/json

Sample:
{
  "Responsecode": "sample string 1",
  "ResponseDescription": "sample string 2",
  "FeedBackTypeList": [
    {
      "ID": 1,
      "Description": "sample string 2"
    },
    {
      "ID": 1,
      "Description": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<FeedBackTypeResponsedata xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CorporateAPI.ResponseObjs">
  <FeedBackTypeList xmlns:d2p1="http://schemas.datacontract.org/2004/07/CorporateAPI.Models">
    <d2p1:tbl_FeedBackType>
      <d2p1:Description>sample string 2</d2p1:Description>
      <d2p1:ID>1</d2p1:ID>
    </d2p1:tbl_FeedBackType>
    <d2p1:tbl_FeedBackType>
      <d2p1:Description>sample string 2</d2p1:Description>
      <d2p1:ID>1</d2p1:ID>
    </d2p1:tbl_FeedBackType>
  </FeedBackTypeList>
  <ResponseDescription>sample string 2</ResponseDescription>
  <Responsecode>sample string 1</Responsecode>
</FeedBackTypeResponsedata>