Skip to main content
POST
/
group
/
leave
Leave a group
curl --request POST \
  --url https://api.wppfy.com/group/leave \
  --header 'Content-Type: application/json' \
  --header 'token: <api-key>' \
  --data '
{
  "groupjid": "120363324255083289@g.us"
}
'
{
  "response": "Group leave successful"
}

Authorizations

token
string
header
required

Body

application/json
groupjid
string
required

Unique group identifier (JID)

Example:

"120363324255083289@g.us"

Response

Successfully left the group

response
string
Example:

"Group leave successful"