Skip to main content
POST
/
api
/
{session}
/
channels
/
{id}
/
follow
Follow channel
curl --request POST \
  --url https://{host}/api/{session}/channels/{id}/follow \
  --header 'apikey: <api-key>'
{
  "success": true,
  "message": "You are now following this channel"
}

Description

This endpoint allows you to follow a specific channel on WhatsApp, adding it to your list of followed channels and allowing you to receive updates from the channel.

URL Parameters

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

Response

success
boolean
Indicates if you started following the channel successfully
{
  "success": true,
  "message": "You are now following this channel"
}

Status Codes

  • 200 - Channel followed successfully
  • 400 - Invalid ID or already following the channel
  • 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/follow

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