POST api/complain/closecomplain

Request Information

URI Parameters

None.

Body Parameters

ComplainCloseRequest
NameDescriptionTypeAdditional information
CloseComplainId

integer

None.

Title

string

None.

CloseDate

date

None.

EmployeeId

integer

None.

IsPayment

string

None.

Charges

decimal number

None.

ComplainId

integer

None.

ComplainImagesId

integer

None.

image

string

None.

ComplainPaymentId

integer

None.

TotalAmount

decimal number

None.

PaidAmount

decimal number

None.

DueAmount

decimal number

None.

EnteryDate

date

None.

PaymentDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "CloseComplainId": 1,
  "Title": "sample string 2",
  "CloseDate": "2025-12-06T09:57:52.1307501+05:30",
  "EmployeeId": 1,
  "IsPayment": "sample string 3",
  "Charges": 1.0,
  "ComplainId": 1,
  "ComplainImagesId": 4,
  "image": "sample string 5",
  "ComplainPaymentId": 6,
  "TotalAmount": 1.0,
  "PaidAmount": 1.0,
  "DueAmount": 1.0,
  "EnteryDate": "2025-12-06T09:57:52.13175+05:30",
  "PaymentDate": "2025-12-06T09:57:52.13175+05:30"
}

application/xml, text/xml

Sample:
<ComplainCloseRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SolarDichachi.Models">
  <Charges>1</Charges>
  <CloseComplainId>1</CloseComplainId>
  <CloseDate>2025-12-06T09:57:52.1307501+05:30</CloseDate>
  <ComplainId>1</ComplainId>
  <ComplainImagesId>4</ComplainImagesId>
  <ComplainPaymentId>6</ComplainPaymentId>
  <DueAmount>1</DueAmount>
  <EmployeeId>1</EmployeeId>
  <EnteryDate>2025-12-06T09:57:52.13175+05:30</EnteryDate>
  <IsPayment>sample string 3</IsPayment>
  <PaidAmount>1</PaidAmount>
  <PaymentDate>2025-12-06T09:57:52.13175+05:30</PaymentDate>
  <Title>sample string 2</Title>
  <TotalAmount>1</TotalAmount>
  <image>sample string 5</image>
</ComplainCloseRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Dictionary of string [key] and Object [value]

Response Formats

application/json, text/json

Sample:
{
  "sample string 1": {},
  "sample string 3": {}
}

application/xml, text/xml

Sample:
<ArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <KeyValueOfstringanyType>
    <Key>sample string 1</Key>
    <Value />
  </KeyValueOfstringanyType>
  <KeyValueOfstringanyType>
    <Key>sample string 3</Key>
    <Value />
  </KeyValueOfstringanyType>
</ArrayOfKeyValueOfstringanyType>