PUT api/Subcontracts/{subcontractId}/Certifications/{certificationId}/Versions/{certificationVersionId}/Adjustments/{certificationConceptId}
Set certification adjustment for a specific concept
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| certificationId | integer |
Required |
|
| certificationVersionId | integer |
Required |
|
| certificationConceptId | CertificationConceptId |
Required |
|
| subcontractId | string |
None. |
Body Parameters
CertificationAdjustmentsUpdateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Title | string |
None. |
|
| Description | string |
Max length: 512 |
|
| Amount | decimal number |
None. |
|
| RecognizedPercentage | decimal number |
None. |
|
| AppliedDeduction | boolean |
None. |
|
| AppliedRetention | boolean |
None. |
|
| AppliedPercByProgress | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"title": "sample string 1",
"description": "sample string 2",
"amount": 1.0,
"recognizedPercentage": 1.0,
"appliedDeduction": true,
"appliedRetention": true,
"appliedPercByProgress": true
}
text/html
Sample:
{"title":"sample string 1","description":"sample string 2","amount":1.0,"recognizedPercentage":1.0,"appliedDeduction":true,"appliedRetention":true,"appliedPercByProgress":true}
application/xml, text/xml
Sample:
<CertificationAdjustmentsUpdateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.SubcontractModule.Application.Dtos.Dtos.CertificationAgg"> <Amount>1</Amount> <AppliedDeduction>true</AppliedDeduction> <AppliedPercByProgress>true</AppliedPercByProgress> <AppliedRetention>true</AppliedRetention> <Description>sample string 2</Description> <RecognizedPercentage>1</RecognizedPercentage> <Title>sample string 1</Title> </CertificationAdjustmentsUpdateDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiDataResultOfBoolean| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | boolean |
None. |
|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Errors | Collection of CustomError |
None. |
|
| Warnings | Collection of string |
None. |
Response Formats
application/json, text/json, text/html
Sample:
Sample not available.