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
Soft-delete a contact by ID
not_found
unauthorized
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Contact ID
Contact deleted
The response is of type boolean.
boolean