PUT api/SupportAnalysis/CreateFAQ?MID={MID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
MID

integer

Required

Body Parameters

SupportLogFAQCreate
NameDescriptionTypeAdditional information
NEEDTO_ADDFAQ

boolean

None.

ISSUE_SOLVED

boolean

None.

FAQ_REMARK

string

None.

FAQ_CREATING_USER

string

None.

TICKET_EVALUATED_BY

string

None.

ISSUE_SOLVED_REMARK

string

None.

Request Formats

application/json, text/json

Sample:
{
  "NEEDTO_ADDFAQ": true,
  "ISSUE_SOLVED": true,
  "FAQ_REMARK": "sample string 3",
  "FAQ_CREATING_USER": "sample string 4",
  "TICKET_EVALUATED_BY": "sample string 5",
  "ISSUE_SOLVED_REMARK": "sample string 6"
}

text/html

Sample:
{"NEEDTO_ADDFAQ":true,"ISSUE_SOLVED":true,"FAQ_REMARK":"sample string 3","FAQ_CREATING_USER":"sample string 4","TICKET_EVALUATED_BY":"sample string 5","ISSUE_SOLVED_REMARK":"sample string 6"}

application/xml, text/xml

Sample:
<SupportLogFAQCreate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.CustomerSupport">
  <FAQ_CREATING_USER>sample string 4</FAQ_CREATING_USER>
  <FAQ_REMARK>sample string 3</FAQ_REMARK>
  <ISSUE_SOLVED>true</ISSUE_SOLVED>
  <ISSUE_SOLVED_REMARK>sample string 6</ISSUE_SOLVED_REMARK>
  <NEEDTO_ADDFAQ>true</NEEDTO_ADDFAQ>
  <TICKET_EVALUATED_BY>sample string 5</TICKET_EVALUATED_BY>
</SupportLogFAQCreate>

application/x-www-form-urlencoded

Sample:

Sample not available.

multipart/form-data

Sample:
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="NEEDTO_ADDFAQ"

True
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="ISSUE_SOLVED"

True
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="FAQ_REMARK"

sample string 3
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="FAQ_CREATING_USER"

sample string 4
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="TICKET_EVALUATED_BY"

sample string 5
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="ISSUE_SOLVED_REMARK"

sample string 6
--MultipartDataMediaFormatterBoundary1q2w3e--

Response Information

Resource Description

boolean

Response Formats

application/json, text/json, text/html

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>

multipart/form-data

Sample:
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name=""

True
--MultipartDataMediaFormatterBoundary1q2w3e--