v1

latestOpenAPI 3.1.02026-07-1413113265.9 KB
contact

unblock a contact

Removes a contact from the blocked contacts list, allowing them to send messages and see your information again according to your privacy settings.

post/instances/{id}/client/action/unblock-contact

Path parameters

idinteger required

Instance ID

Request body

contactIdstring required

The ID of the contact to unblock in the format number@c.us

Example request

{
  "contactId": "1234567890@c.us"
}

Response

Contact unblocked successfully

status'success' | 'error'

Example response

{
  "data": {
    "contactId": "1234567890@c.us",
    "unblocked": true
  },
  "links": {
    "self": "https://waapi.app/api/v1/instances/1/client/action/unblock-contact"
  },
  "status": "success"
}