DELETE api/customers/einvoicesetting?id={id}
Deletes customer einvoice
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Id of the customer einvoice setting where customer einvoice setting will be deleted |
globally unique identifier |
Required |
Body Parameters
None.
Remarks
None.
Example
None.
Response Information
Resource Description
CustomerEInvoiceSettingDeleteResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success |
Returns true if customer einvoice setting is deleted |
boolean |
None. |
| Errors |
List of errors when deleting an customer einvoice setting |
Collection of DeleteCustomerEInvoiceSettingError |
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:
<CustomerEInvoiceSettingDeleteResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.Business">
<Errors>
<DeleteCustomerEInvoiceSettingError>
<ErrorCode>InternalServerError</ErrorCode>
<ErrorMessage>sample string 1</ErrorMessage>
</DeleteCustomerEInvoiceSettingError>
<DeleteCustomerEInvoiceSettingError>
<ErrorCode>InternalServerError</ErrorCode>
<ErrorMessage>sample string 1</ErrorMessage>
</DeleteCustomerEInvoiceSettingError>
</Errors>
<Success>true</Success>
</CustomerEInvoiceSettingDeleteResponse>