Is it possible to actually delete a contact
from mailjet?
Their contact API doc doesn't even list delete
as a supported action.
from mailjet_rest import Client
mailjet = Client(auth=(MAILJET_API_KEY, MAILJET_API_SECRET), version='v3')
mailjet.contact.delete(<contact-id>).json()
{'ErrorInfo': '', 'ErrorMessage': 'Operation not allowed', 'StatusCode': 401}
I am interested in removing a contact
, not a list recipient
, and hence this question is not a duplicate of How can i delete a contact from a list with the mailjet api and php?.