POST
/api/contacts/{contactPhoneNumber}/unblock
Unblocks a specific contact.
Unblock Contact
Unblocks a specific contact.
Parameters
Name | Type | Required | Description |
---|---|---|---|
contactPhoneNumber | string | Yes | The JID (Jabber ID) of the contact in E.164 format (international phone number) e.g., 1234567890. |
Code Examples
curl -X POST "https://www.wasenderapi.com/api/contacts/{contactPhoneNumber}/unblock"
-H "Authorization: Bearer YOUR_API_KEY"
-H "Content-Type: application/json"
Response Examples
{
"success": true,
"data": {
"message": "Contact unblocked"
}
}