Skip to content

Archive Company (Deprecated)
deprecated

Request

Archive the company. This is a soft-delete: the company record is preserved and its archived_customer, archived_subcontractor, and archived_buyer_or_seller flags are set to true so it no longer appears in active lists.(deprecated, use /company/{id} instead)

Security
oAuth2ClientCredentials
Path
idstring, (uuid)(Id)required
DELETE
/v1/accounting/company/{id}
import requests

id = "YOUR_id_PARAMETER"
url = "https://api.qargo.com/v1/accounting/company/" + id

headers = {"Authorization": "Bearer <YOUR_TOKEN_HERE>"}

response = requests.delete(url, headers=headers)

data = response.json()
print(data)

Responses

Successful Response

Bodyapplication/json
any
Response
// No response example