PUT api/UpdateSupportLoggerReplyToCustomer?MID={MID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
MID

integer

Required

Body Parameters

SupportLoggerCustomer
NameDescriptionTypeAdditional information
REPLY_TO_CUSTOMER

boolean

None.

REPLY_TO_CUSTOMER_MESSAGE

string

None.

Request Formats

application/json, text/json

Sample:
{
  "REPLY_TO_CUSTOMER": true,
  "REPLY_TO_CUSTOMER_MESSAGE": "sample string 2"
}

text/html

Sample:
{"REPLY_TO_CUSTOMER":true,"REPLY_TO_CUSTOMER_MESSAGE":"sample string 2"}

application/xml, text/xml

Sample:
<SupportLoggerCustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.CustomerSupport">
  <REPLY_TO_CUSTOMER>true</REPLY_TO_CUSTOMER>
  <REPLY_TO_CUSTOMER_MESSAGE>sample string 2</REPLY_TO_CUSTOMER_MESSAGE>
</SupportLoggerCustomer>

application/x-www-form-urlencoded

Sample:

Sample not available.

multipart/form-data

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

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

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e--

Response Information

Resource Description

SupportLoggerCustomerAddResult
NameDescriptionTypeAdditional information
status

string

None.

message

string

None.

supportLogger

SupportLoggerCustomer

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "supportLogger": {
    "REPLY_TO_CUSTOMER": true,
    "REPLY_TO_CUSTOMER_MESSAGE": "sample string 2"
  }
}

text/html

Sample:
{"status":"sample string 1","message":"sample string 2","supportLogger":{"REPLY_TO_CUSTOMER":true,"REPLY_TO_CUSTOMER_MESSAGE":"sample string 2"}}

application/xml, text/xml

Sample:
<SupportLoggerCustomerAddResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.CustomerSupport">
  <message>sample string 2</message>
  <status>sample string 1</status>
  <supportLogger>
    <REPLY_TO_CUSTOMER>true</REPLY_TO_CUSTOMER>
    <REPLY_TO_CUSTOMER_MESSAGE>sample string 2</REPLY_TO_CUSTOMER_MESSAGE>
  </supportLogger>
</SupportLoggerCustomerAddResult>

multipart/form-data

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

sample string 1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="message"

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="supportLogger.REPLY_TO_CUSTOMER"

True
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="supportLogger.REPLY_TO_CUSTOMER_MESSAGE"

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e--