## Delete Mailing List **delete** `/print-mail/v1/mailing_lists/{id}` Delete a mailing list. This permanently deletes the mailing list and its associations. This operation cannot be undone. ### Path Parameters - `id: string` ### Returns - `id: string` A unique ID prefixed with mailing_list_ - `deleted: true` - `true` ### Example ```http curl https://api.postgrid.com/print-mail/v1/mailing_lists/$ID \ -X DELETE \ -H "X-API-Key: $POSTGRID_PRINT_MAIL_API_KEY" ``` #### Response ```json { "id": "mailing_list_sqF12lZ1VlBb", "deleted": true } ```