Parameters
JSON body
Request body
application/jsoncontractIdnumberRequiredInternal contract ID to soft-delete.
Example
10Soft-deletes a contract by setting deleted_date. The contract is excluded from listings but remains in the database.
JSON body
contractIdnumberRequiredInternal contract ID to soft-delete.
101 status code documented
successbooleanRequiredWhether the contract was deleted successfully.
{
"success": false
}POST /bff/contract/delete
curl -X POST "https://api.bizkithub.com/bff/contract/delete" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"contractId": 10
}'All BizKitHub public API endpoints require authentication via API key.