Delete Accounting Bill
curl --request DELETE \
--url https://api.meetcampfire.com/coa/api/v1/bill/{id}/import requests
url = "https://api.meetcampfire.com/coa/api/v1/bill/{id}/"
response = requests.delete(url)
print(response.text)const options = {method: 'DELETE'};
fetch('https://api.meetcampfire.com/coa/api/v1/bill/{id}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.meetcampfire.com/coa/api/v1/bill/{id}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.meetcampfire.com/coa/api/v1/bill/{id}/"
req, _ := http.NewRequest("DELETE", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.meetcampfire.com/coa/api/v1/bill/{id}/")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.meetcampfire.com/coa/api/v1/bill/{id}/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
response = http.request(request)
puts response.read_bodyAccounts Payable
Delete Accounting Bill
Permanently deletes an accounting bill and its associated journal entry.
This endpoint performs a complete deletion of the bill including:
- Removal of all bill line items and associated data
- Deletion of the corresponding accounts payable journal entry
- Cleanup of any tax calculations and allocations
- Removal of vendor payment allocations if applicable
Important Notes:
- This operation is irreversible and permanently removes the bill from the system
- The associated journal entry will be automatically deleted to maintain accounting integrity
- All double-entry bookkeeping records related to this bill will be removed
- Any payments allocated to this bill should be handled separately before deletion
- Deletion may affect financial reports and account balances
Restrictions:
- Bills with allocated payments may require payment reallocation first
- Consider the impact on historical financial reporting
- Bills cannot be deleted in a closed period
DELETE
/
coa
/
api
/
v1
/
bill
/
{id}
/
Delete Accounting Bill
curl --request DELETE \
--url https://api.meetcampfire.com/coa/api/v1/bill/{id}/import requests
url = "https://api.meetcampfire.com/coa/api/v1/bill/{id}/"
response = requests.delete(url)
print(response.text)const options = {method: 'DELETE'};
fetch('https://api.meetcampfire.com/coa/api/v1/bill/{id}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.meetcampfire.com/coa/api/v1/bill/{id}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.meetcampfire.com/coa/api/v1/bill/{id}/"
req, _ := http.NewRequest("DELETE", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.meetcampfire.com/coa/api/v1/bill/{id}/")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.meetcampfire.com/coa/api/v1/bill/{id}/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
response = http.request(request)
puts response.read_bodyPath Parameters
Pattern:
^\d+$Response
204
No response body