POST api/Service/SubmitAppFeedback

Request Information

URI Parameters

None.

Body Parameters

SubmitAppFeedbackRequest
NameDescriptionTypeAdditional information
Input

SubmitAppFeedbackInputModel

None.

Request Formats

application/json, text/json

Sample:
{
  "Input": {
    "UserNo": 1,
    "Text": "sample string 2",
    "DeviceInfo": "sample string 3",
    "Images": [
      "sample string 1",
      "sample string 2"
    ]
  }
}

application/xml, text/xml

Sample:
<SubmitAppFeedbackRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizMate.BizLayer">
  <Input>
    <DeviceInfo>sample string 3</DeviceInfo>
    <Images xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:string>sample string 1</d3p1:string>
      <d3p1:string>sample string 2</d3p1:string>
    </Images>
    <Text>sample string 2</Text>
    <UserNo>1</UserNo>
  </Input>
</SubmitAppFeedbackRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SubmitAppFeedbackResponse
NameDescriptionTypeAdditional information
OutPut

SubmitAppFeedbackOutPutModel

None.

Response Formats

application/json, text/json

Sample:
{
  "OutPut": {
    "Success": true,
    "Message": "sample string 2",
    "CustomerFeedBackNo": 3
  }
}

application/xml, text/xml

Sample:
<SubmitAppFeedbackResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizMate.BizLayer">
  <OutPut>
    <CustomerFeedBackNo>3</CustomerFeedBackNo>
    <Message>sample string 2</Message>
    <Success>true</Success>
  </OutPut>
</SubmitAppFeedbackResponse>