Delete Contact
You can delete an existing contact from your account by sending a DELETE request to the API endpoint. Your request must include the contact's email address.
Endpoint Information
Endpoint: https://manage.maileroo.app/v1/contact/[:list_id]/[:email_address]
Method: DELETE
Content Type: application/json
You can find your list ID in your when you to go to your 'Contacts' section within your organization. There it will display the list-id that you can use in this endpoint.
Request
The DELETE request does not require a request body. All necessary information is provided in the URL parameters.
Request Headers
Content-Type: application/json
X-API-Key: YOUR_API_KEY_HERE
URL Parameters
Parameter | Type | Description |
---|---|---|
list_id | string | The ID of the list containing the contact |
email_address | string | The email address of the contact to delete |
Deleting a contact is permanent and cannot be undone. Make sure you have a backup of any important contact data before proceeding.
Response
The response will be a JSON object containing the following fields:
Field | Type | Description |
---|---|---|
success | boolean | Boolean indicating whether the request was successful |
message | string | Message describing the result of the request |