GET api/GetEscalationRespondedDetails?PARTYFOLLOWUP_ID={PARTYFOLLOWUP_ID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PARTYFOLLOWUP_ID

string

Required

Body Parameters

None.

Response Information

Resource Description

EscalationResponseListApiResponse
NameDescriptionTypeAdditional information
Message

string

None.

Status

string

None.

Response

Collection of EscalationResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "Status": "sample string 2",
  "Response": [
    {
      "ACTION_TAKEN_REMARK": "sample string 1",
      "ACTION_TAKEN_ON": "sample string 2"
    },
    {
      "ACTION_TAKEN_REMARK": "sample string 1",
      "ACTION_TAKEN_ON": "sample string 2"
    }
  ]
}

text/html

Sample:
{"Message":"sample string 1","Status":"sample string 2","Response":[{"ACTION_TAKEN_REMARK":"sample string 1","ACTION_TAKEN_ON":"sample string 2"},{"ACTION_TAKEN_REMARK":"sample string 1","ACTION_TAKEN_ON":"sample string 2"}]}

application/xml, text/xml

Sample:
<EscalationResponseListApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.AdminPayment">
  <Message>sample string 1</Message>
  <Response>
    <EscalationResponse>
      <ACTION_TAKEN_ON>sample string 2</ACTION_TAKEN_ON>
      <ACTION_TAKEN_REMARK>sample string 1</ACTION_TAKEN_REMARK>
    </EscalationResponse>
    <EscalationResponse>
      <ACTION_TAKEN_ON>sample string 2</ACTION_TAKEN_ON>
      <ACTION_TAKEN_REMARK>sample string 1</ACTION_TAKEN_REMARK>
    </EscalationResponse>
  </Response>
  <Status>sample string 2</Status>
</EscalationResponseListApiResponse>

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[0].ACTION_TAKEN_REMARK"

sample string 1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Response[0].ACTION_TAKEN_ON"

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Response[1].ACTION_TAKEN_REMARK"

sample string 1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Response[1].ACTION_TAKEN_ON"

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e--