curl -X POST "https://api.oxenty.api.br/api/groups/participants/promote" \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "sessionId": "550e8400-e29b-41d4-a716-446655440000", "groupJid": "123456789@g.us", "participants": ["5511999999999@s.whatsapp.net"] }'
{ "success": true, "results": [ { "jid": "5511999999999@s.whatsapp.net", "status": "promoted" } ] }
Promove ou rebaixa participantes de um grupo
curl -X POST "https://api.oxenty.api.br/api/groups/participants/demote" \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "sessionId": "550e8400-e29b-41d4-a716-446655440000", "groupJid": "123456789@g.us", "participants": ["5511999999999@s.whatsapp.net"] }'
{ "success": true, "results": [ { "jid": "5511999999999@s.whatsapp.net", "status": "demoted" } ] }