POST api/PostEscalation
Request Information
URI Parameters
None.
Body Parameters
FollowupEscalationName | Description | Type | Additional information |
---|---|---|---|
MID | integer |
None. |
|
REF_MID | integer |
None. |
|
ESCALATION_REMARK | string |
None. |
|
REASON_FOR_ESCALATION | string |
None. |
|
ESCALATED_BY | string |
None. |
|
ACTION_TAKEN_REMARK | string |
None. |
|
ACTION_TAKEN_ON | date |
None. |
|
ESCALATED_ON | date |
None. |
|
ACCODE | string |
None. |
|
ACCOUNT_HEAD | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "MID": 1, "REF_MID": 2, "ESCALATION_REMARK": "sample string 3", "REASON_FOR_ESCALATION": "sample string 4", "ESCALATED_BY": "sample string 5", "ACTION_TAKEN_REMARK": "sample string 6", "ACTION_TAKEN_ON": "2025-08-06T03:30:00.3478229+04:00", "ESCALATED_ON": "2025-08-06T03:30:00.3478229+04:00", "ACCODE": "sample string 9", "ACCOUNT_HEAD": "sample string 10" }
text/html
Sample:
{"MID":1,"REF_MID":2,"ESCALATION_REMARK":"sample string 3","REASON_FOR_ESCALATION":"sample string 4","ESCALATED_BY":"sample string 5","ACTION_TAKEN_REMARK":"sample string 6","ACTION_TAKEN_ON":"2025-08-06T03:30:00.3478229+04:00","ESCALATED_ON":"2025-08-06T03:30:00.3478229+04:00","ACCODE":"sample string 9","ACCOUNT_HEAD":"sample string 10"}
application/xml, text/xml
Sample:
<FollowupEscalation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.AdminPayment"> <ACCODE>sample string 9</ACCODE> <ACCOUNT_HEAD>sample string 10</ACCOUNT_HEAD> <ACTION_TAKEN_ON>2025-08-06T03:30:00.3478229+04:00</ACTION_TAKEN_ON> <ACTION_TAKEN_REMARK>sample string 6</ACTION_TAKEN_REMARK> <ESCALATED_BY>sample string 5</ESCALATED_BY> <ESCALATED_ON>2025-08-06T03:30:00.3478229+04:00</ESCALATED_ON> <ESCALATION_REMARK>sample string 3</ESCALATION_REMARK> <MID>1</MID> <REASON_FOR_ESCALATION>sample string 4</REASON_FOR_ESCALATION> <REF_MID>2</REF_MID> </FollowupEscalation>
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="REF_MID" 2 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="ESCALATION_REMARK" sample string 3 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="REASON_FOR_ESCALATION" sample string 4 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="ESCALATED_BY" sample string 5 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="ACTION_TAKEN_REMARK" sample string 6 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="ACTION_TAKEN_ON" 2025-08-06T03:30:00.3478229+04:00 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="ESCALATED_ON" 2025-08-06T03:30:00.3478229+04:00 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="ACCODE" sample string 9 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="ACCOUNT_HEAD" sample string 10 --MultipartDataMediaFormatterBoundary1q2w3e--
Response Information
Resource Description
FollowupEscalationApiResponseName | Description | Type | Additional information |
---|---|---|---|
Message | string |
None. |
|
Status | string |
None. |
|
Response | FollowupEscalation |
None. |
Response Formats
application/json, text/json
Sample:
{ "Message": "sample string 1", "Status": "sample string 2", "Response": { "MID": 1, "REF_MID": 2, "ESCALATION_REMARK": "sample string 3", "REASON_FOR_ESCALATION": "sample string 4", "ESCALATED_BY": "sample string 5", "ACTION_TAKEN_REMARK": "sample string 6", "ACTION_TAKEN_ON": "2025-08-06T03:30:00.3634512+04:00", "ESCALATED_ON": "2025-08-06T03:30:00.3634512+04:00", "ACCODE": "sample string 9", "ACCOUNT_HEAD": "sample string 10" } }
text/html
Sample:
{"Message":"sample string 1","Status":"sample string 2","Response":{"MID":1,"REF_MID":2,"ESCALATION_REMARK":"sample string 3","REASON_FOR_ESCALATION":"sample string 4","ESCALATED_BY":"sample string 5","ACTION_TAKEN_REMARK":"sample string 6","ACTION_TAKEN_ON":"2025-08-06T03:30:00.3634512+04:00","ESCALATED_ON":"2025-08-06T03:30:00.3634512+04:00","ACCODE":"sample string 9","ACCOUNT_HEAD":"sample string 10"}}
application/xml, text/xml
Sample:
<FollowupEscalationApiResponse 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> <ACCODE>sample string 9</ACCODE> <ACCOUNT_HEAD>sample string 10</ACCOUNT_HEAD> <ACTION_TAKEN_ON>2025-08-06T03:30:00.3634512+04:00</ACTION_TAKEN_ON> <ACTION_TAKEN_REMARK>sample string 6</ACTION_TAKEN_REMARK> <ESCALATED_BY>sample string 5</ESCALATED_BY> <ESCALATED_ON>2025-08-06T03:30:00.3634512+04:00</ESCALATED_ON> <ESCALATION_REMARK>sample string 3</ESCALATION_REMARK> <MID>1</MID> <REASON_FOR_ESCALATION>sample string 4</REASON_FOR_ESCALATION> <REF_MID>2</REF_MID> </Response> <Status>sample string 2</Status> </FollowupEscalationApiResponse>
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.REF_MID" 2 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="Response.ESCALATION_REMARK" sample string 3 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="Response.REASON_FOR_ESCALATION" sample string 4 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="Response.ESCALATED_BY" sample string 5 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="Response.ACTION_TAKEN_REMARK" sample string 6 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="Response.ACTION_TAKEN_ON" 2025-08-06T03:30:00.3634512+04:00 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="Response.ESCALATED_ON" 2025-08-06T03:30:00.3634512+04:00 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="Response.ACCODE" sample string 9 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="Response.ACCOUNT_HEAD" sample string 10 --MultipartDataMediaFormatterBoundary1q2w3e--