POST api/ReplyToCustomer

Request Information

URI Parameters

None.

Body Parameters

ReplyToCustomer
NameDescriptionTypeAdditional information
MID

integer

None.

SUPPORT_TICKET_ID

integer

None.

CUSTOMER_ID

string

None.

CUSTOMER_NAME

string

None.

CUSTOMER_QUERY

string

None.

REPLY_TO_CUSTOMER

string

None.

REPLY_LOG

integer

None.

VIEW

boolean

None.

CREATED_BY

string

None.

ISSUE_SOLVED_REMARK

string

None.

Request Formats

application/json, text/json

Sample:
{
  "MID": 1,
  "SUPPORT_TICKET_ID": 2,
  "CUSTOMER_ID": "sample string 3",
  "CUSTOMER_NAME": "sample string 4",
  "CUSTOMER_QUERY": "sample string 5",
  "REPLY_TO_CUSTOMER": "sample string 6",
  "REPLY_LOG": 7,
  "VIEW": true,
  "CREATED_BY": "sample string 9",
  "ISSUE_SOLVED_REMARK": "sample string 10"
}

text/html

Sample:
{"MID":1,"SUPPORT_TICKET_ID":2,"CUSTOMER_ID":"sample string 3","CUSTOMER_NAME":"sample string 4","CUSTOMER_QUERY":"sample string 5","REPLY_TO_CUSTOMER":"sample string 6","REPLY_LOG":7,"VIEW":true,"CREATED_BY":"sample string 9","ISSUE_SOLVED_REMARK":"sample string 10"}

application/xml, text/xml

Sample:
<ReplyToCustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.Audit">
  <CREATED_BY>sample string 9</CREATED_BY>
  <CUSTOMER_ID>sample string 3</CUSTOMER_ID>
  <CUSTOMER_NAME>sample string 4</CUSTOMER_NAME>
  <CUSTOMER_QUERY>sample string 5</CUSTOMER_QUERY>
  <ISSUE_SOLVED_REMARK>sample string 10</ISSUE_SOLVED_REMARK>
  <MID>1</MID>
  <REPLY_LOG>7</REPLY_LOG>
  <REPLY_TO_CUSTOMER>sample string 6</REPLY_TO_CUSTOMER>
  <SUPPORT_TICKET_ID>2</SUPPORT_TICKET_ID>
  <VIEW>true</VIEW>
</ReplyToCustomer>

application/x-www-form-urlencoded

Sample:

Sample not available.

multipart/form-data

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

1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="SUPPORT_TICKET_ID"

2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="CUSTOMER_ID"

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

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

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

sample string 6
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="REPLY_LOG"

7
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="VIEW"

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

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

sample string 10
--MultipartDataMediaFormatterBoundary1q2w3e--

Response Information

Resource Description

ReplyToCustomerApiResponse
NameDescriptionTypeAdditional information
Message

string

None.

Status

string

None.

Response

ReplyToCustomer

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "Status": "sample string 2",
  "Response": {
    "MID": 1,
    "SUPPORT_TICKET_ID": 2,
    "CUSTOMER_ID": "sample string 3",
    "CUSTOMER_NAME": "sample string 4",
    "CUSTOMER_QUERY": "sample string 5",
    "REPLY_TO_CUSTOMER": "sample string 6",
    "REPLY_LOG": 7,
    "VIEW": true,
    "CREATED_BY": "sample string 9",
    "ISSUE_SOLVED_REMARK": "sample string 10"
  }
}

text/html

Sample:
{"Message":"sample string 1","Status":"sample string 2","Response":{"MID":1,"SUPPORT_TICKET_ID":2,"CUSTOMER_ID":"sample string 3","CUSTOMER_NAME":"sample string 4","CUSTOMER_QUERY":"sample string 5","REPLY_TO_CUSTOMER":"sample string 6","REPLY_LOG":7,"VIEW":true,"CREATED_BY":"sample string 9","ISSUE_SOLVED_REMARK":"sample string 10"}}

application/xml, text/xml

Sample:
<ReplyToCustomerApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.Audit">
  <Message>sample string 1</Message>
  <Response>
    <CREATED_BY>sample string 9</CREATED_BY>
    <CUSTOMER_ID>sample string 3</CUSTOMER_ID>
    <CUSTOMER_NAME>sample string 4</CUSTOMER_NAME>
    <CUSTOMER_QUERY>sample string 5</CUSTOMER_QUERY>
    <ISSUE_SOLVED_REMARK>sample string 10</ISSUE_SOLVED_REMARK>
    <MID>1</MID>
    <REPLY_LOG>7</REPLY_LOG>
    <REPLY_TO_CUSTOMER>sample string 6</REPLY_TO_CUSTOMER>
    <SUPPORT_TICKET_ID>2</SUPPORT_TICKET_ID>
    <VIEW>true</VIEW>
  </Response>
  <Status>sample string 2</Status>
</ReplyToCustomerApiResponse>

multipart/form-data

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

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

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Response.MID"

1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Response.SUPPORT_TICKET_ID"

2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Response.CUSTOMER_ID"

sample string 3
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Response.CUSTOMER_NAME"

sample string 4
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Response.CUSTOMER_QUERY"

sample string 5
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Response.REPLY_TO_CUSTOMER"

sample string 6
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Response.REPLY_LOG"

7
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Response.VIEW"

True
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Response.CREATED_BY"

sample string 9
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Response.ISSUE_SOLVED_REMARK"

sample string 10
--MultipartDataMediaFormatterBoundary1q2w3e--