Deny Membership Request

Supported & Tested

Deny one or more pending group membership requests.

POSThttps://api.waplix.io/api/v1/groups/membership-requests-deny
Authentication
Authorization: Bearer YOUR_API_KEY
Parameters Specification
instance_id
stringReq

Required Waplix instance id

group_id
stringReq

Required WhatsApp group id ending with @g.us

participants
arrayReq

Required array of phone numbers or JIDs

Usage Notes
A 404 result here means WhatsApp did not find a pending request to deny for that participant.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/groups/membership-requests-deny" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
Success Response
Response · 200 OK
{
  "success": true,
  "data": {
    "instance_id": "39058",
    "group_id": "120363429508183753@g.us",
    "participants": [
      "923000935862@s.whatsapp.net"
    ],
    "decision": "deny",
    "results": [
      {
        "status": "404",
        "jid": "142120618831980@lid"
      }
    ]
  }
}
Was this page helpful?