BizKitHub
DocsAPI ReferenceContract/bff/contract/delete
postContractAdmin BFF

/bff/contract/delete

Soft-deletes a contract by setting deleted_date. The contract is excluded from listings but remains in the database.

ContractpostBffContractDelete

Parameters

JSON body

Request body

application/json
contractIdnumberRequired

Internal contract ID to soft-delete.

Example10

Response schema

1 status code documented

200Success
successbooleanRequired

Whether the contract was deleted successfully.

Response example

application/json
{
  "success": false
}

Request example

POST /bff/contract/delete

post
curl -X POST "https://api.bizkithub.com/bff/contract/delete" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "contractId": 10
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key