Skip to content

Delete Delete Contact

Base URLs

Demo URL: https://demoapi.openletterconnect.com/api/v1

Production URL: https://api.openletterconnect.com/api/v1

{{base_url}}/contacts/{{id}}

Description

This endpoint is used to delete a specific contact from the system. By providing the contact's ID, you can remove it permanently. The API will return a confirmation message indicating that the contact has been deleted successfully.

AUTHORIZATION

Bearer Token

  • Token: {{jwt_token}}

Example Request

curl --location -g --request DELETE '{{base_url}}/contacts/4' \
--data ''

Example Response

{
  "message": "Contact Deleted Successfully",
  "data": {}
}