Delete Invoice Tax
DELETE /api/v1/InvoiceSetting/DeleteInvoiceTax
Description
This endpoint is used to delete an invoice tax setting. It allows users to remove a specific tax setting for invoices.
Headers:
- Content-Type: application/json
ApiKey:
- No API key required
Path Parameters:
- version: string, required
Query Parameters:
TaxSettingId: string, format: uuid, required
URL:
- DELETE:
{{baseUrl API url}}/api/v1/InvoiceSetting/DeleteInvoiceTax?TaxSettingId={TaxSettingId}
Response:
- 200: Success, indicates that the specified invoice tax setting has been successfully deleted.
Error Codes:
-
404: Resource not found, the specified version or setting does not exist.
-
500: Internal server error, something went wrong while processing the request.
Example Request URL:
DELETE /api/v1/InvoiceSetting/DeleteInvoiceTax?TaxSettingId=00000000-0000-0000-0000-000000000000
Content-Type: application/json
Example Response:
HTTP/1.1 200 OK
Method: DELETE
/api/v1/InvoiceSetting/DeleteInvoiceTax?TaxSettingId=<uuid>
Query Params
| Param | value |
|---|---|
| TaxSettingId | <uuid> |
Response: 200
LANGUAGE
CURL REQUEST
curl --request DELETE \
--url /api/v1/InvoiceSetting/DeleteInvoiceTax \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!