DELETE api/agreements/articlegroupline/{id}
Deletes an article groupline on agreement.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Id of article group line that should be deleted from agreement |
globally unique identifier |
Required |
Body Parameters
None.
Remarks
None.
Example
None.
Response Information
Resource Description
AgreementArticleGroupLineDeleteResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success |
Returns true if article group line is deleted on agreement |
boolean |
None. |
| Errors |
List of errors when deleting an article group line on agreement |
Collection of DeleteAgreementArticleGroupLineError |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Errors": [
{
"ErrorCode": 1,
"ErrorMessage": "sample string 1"
},
{
"ErrorCode": 1,
"ErrorMessage": "sample string 1"
}
]
}
application/xml, text/xml
Sample:
<AgreementArticleGroupLineDeleteResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.Agreement">
<Errors>
<DeleteAgreementArticleGroupLineError>
<ErrorCode>InternalServerError</ErrorCode>
<ErrorMessage>sample string 1</ErrorMessage>
</DeleteAgreementArticleGroupLineError>
<DeleteAgreementArticleGroupLineError>
<ErrorCode>InternalServerError</ErrorCode>
<ErrorMessage>sample string 1</ErrorMessage>
</DeleteAgreementArticleGroupLineError>
</Errors>
<Success>true</Success>
</AgreementArticleGroupLineDeleteResponse>