Delete Company
To delete an existing company, you will have to use the postmethod. The operation must be set to delete
and scope to company
.
Delete company example
To delete a company, and all of its data, you only need to provide a companyId
. Deleting candidates are done with a JSON object. Below you will see a small example of how the JSON-object is structured.
json
{
"key": "YOUR_KEY",
"scope": "company",
"operation": "delete",
"data": {
"companyId": 356636
}
}