Skip to main content
POST
/
api
/
{session}
/
channels
/
{id}
/
unmute
Unmute channel
curl --request POST \
  --url https://{host}/api/{session}/channels/{id}/unmute \
  --header 'apikey: <api-key>'
{
  "success": true,
  "message": "Channel notifications reactivated successfully"
}

Description

This endpoint allows you to reactivate notifications from a channel that was previously muted. After unmuting, you will resume receiving notifications for updates from the channel.

URL Parameters

session
string
required
WhatsApp unique authenticated session ID
id
string
required
Unique ID of the channel to reactivate notifications

Response

success
boolean
Indicates if the channel was unmuted successfully
{
  "success": true,
  "message": "Channel notifications reactivated successfully"
}

Status Codes

  • 200 - Channel unmuted successfully
  • 400 - Invalid ID or channel is already unmuted
  • 401 - Unauthorized
  • 404 - Channel not found
  • 500 - Internal server error

Usage Example

curl -X POST https://api.wappfy.com.br/api/my-session/channels/123456789@newsletter/unmute

Authorizations

apikey
string
header
required

Your Wappfy API key (get it at dash.wappfy.com.br)

Path Parameters

session
string
required

Session name (instanceName)

id
any
required

WhatsApp Channel ID

I