- Introdução à megaAPI
- Componente n8n megaAPI
- InstanceController
- WebhookController
- SendMessageController
- ConfigController
- ChatController
- GroupController
Listar todos os grupos
GET
https://apinocode01.megaapi.com.br/rest/group/list/{{instance_key}}
Requisição
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Exemplo:
Authorization: Bearer ********************
Parâmetros Header
Content-Type
string
requerido
Exemplo:
application/json
Authorization
string
requerido
Exemplo:
Bearer {{token}}
Exemplos de Requisição
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://apinocode01.megaapi.com.br/rest/group/list/sua instance_key' \
--header 'Authorization: Bearer seu token' \
--header 'Content-Type: application/json'
Respostas
🟢200Success
application/json
Body
error
boolean
requerido
message
string
requerido
groups
array [object {15}]
requerido
id
string
opcional
subject
string
opcional
subjectOwner
string
opcional
subjectTime
integer
opcional
size
integer
opcional
creation
integer
opcional
owner
string
opcional
restrict
boolean
opcional
announce
boolean
opcional
isCommunity
boolean
opcional
isCommunityAnnounce
boolean
opcional
joinApprovalMode
boolean
opcional
memberAddMode
boolean
opcional
membershipApprovalMode
boolean
opcional
participants
array [object {2}]
opcional
communitys
array[string]
requerido
Exemplo
{
"error": false,
"message": "Groups and communitys listed",
"groups": [
{
"id": "120363360763649455@g.us",
"subject": "Testeo",
"subjectOwner": "556181926137@s.whatsapp.net",
"subjectTime": 1731182457,
"size": 2,
"creation": 1731182457,
"owner": "556181926137@s.whatsapp.net",
"restrict": false,
"announce": false,
"isCommunity": false,
"isCommunityAnnounce": false,
"joinApprovalMode": false,
"memberAddMode": true,
"membershipApprovalMode": false,
"participants": [
{
"id": "556181926137@s.whatsapp.net",
"admin": "superadmin"
},
{
"id": "556195562618@s.whatsapp.net",
"admin": null
}
]
}
],
"communitys": []
}