POST api/Feedback/SetFeedback?merchantkey={merchantkey}

Sets the feedback. Upload any attachments file name with 'FormDataId'_'FeedbackId'_'QuestionId'_'FileName' format.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
merchantkey

The merchantkey.

string

Required

Body Parameters

None.

Response Information

Resource Description

This function returns set feedback.

APIHttpResponse
NameDescriptionTypeAdditional information
Status

Gets or sets the status.

string

None.

ErrorText

Gets or sets the error text.

string

None.

ErrorCode

Gets or sets the error code.

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "ErrorText": "sample string 2",
  "ErrorCode": 3
}

multipart/form-data

Sample:
{"Status":"sample string 1","ErrorText":"sample string 2","ErrorCode":3}

application/xml, text/xml

Sample:
<APIHttpResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MagnitudeGoldAPI.Common">
  <ErrorCode>3</ErrorCode>
  <ErrorText>sample string 2</ErrorText>
  <Status>sample string 1</Status>
</APIHttpResponse>