Skip to main content
DELETE
/
public
/
v1
/
contacts
/
{id}
Python
import requests

url = 'https://api.minimo.it/public/v1/contacts/42'
headers = {'Authorization': 'Bearer {{BEARER_TOKEN}}'}
response = requests.delete(url, headers=headers)
print(response.json())
true
This performs a soft delete — the contact is marked as deleted but not permanently removed from the database. Soft-deleted contacts can be restored by calling the upsert or update by ID endpoint.

Common Errors

ErrorCauseSolution
not_foundNo contact with this IDVerify the contact ID
unauthorizedInvalid API keyVerify API key in Authorization header

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

Contact ID

Response

Contact deleted

The response is of type boolean.

Example:

true