POST api/ServiceProvision/UpdateClientReport

Request Information

URI Parameters

None.

Body Parameters

AgreementDayReport_ClientCreate
NameDescriptionTypeAdditional information
agreementDayId

integer

None.

reportStatus

integer

None.

clientComment

string

None.

Request Formats

application/json, text/json

Sample:
{
  "agreementDayId": 1,
  "reportStatus": 2,
  "clientComment": "sample string 3"
}

application/xml, text/xml

Sample:
<AgreementDayReport_ClientCreate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/myReportysModels">
  <agreementDayId>1</agreementDayId>
  <clientComment>sample string 3</clientComment>
  <reportStatus>2</reportStatus>
</AgreementDayReport_ClientCreate>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'AgreementDayReport_ClientCreate'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>