Skip to main content

Group Metadata (light)

Method#

/light-group-metadata#

GET https://api.z-api.io/instances/YOUR_INSTANCE/token/YOUR_TOKEN/light-group-metadata/{phone}

Header#

KeyValue
Client-TokenACCOUNT SECURITY TOKEN

Concept#

This method returns the group metadata with all group information and its participants, except for the group invite link.

The only difference between this method and Group Metadata is that this one does not return the group invite link, as retrieving this link can sometimes be costly and slightly time-consuming. Knowing this, we provide a "light" way to obtain group metadata.

If you want to use this method and later need the group invite link, you can get it from the API Get group invitation link.


Attributes#

Required#

AttributesTypeDescription
groupIdstringGroup ID/Phone

Optional#

AttributesTypeDescription

Request Params#

URL#

GET https://api.z-api.io/instances/YOUR_INSTANCE/token/YOUR_TOKEN/light-group-metadata/{phone}


Response#

200#

AttributesTypeDescription
phonestringGroup ID/Phone
descriptionstringGroup description
ownerstringGroup creator's phone number
subjectstringGroup name
creationtimestampTimestamp of group creation date
communityIdstringCommunity ID
adminOnlyMessagebooleanIndicates if only Admins can send messages
adminOnlySettingsbooleanIndicates if only Admins can change settings
requireAdminApprovalbooleanIndicates if admin approval is required to join the group
isGroupAnnouncementbooleanIndicates if it is an announcement group
participantsarray stringList of participants

Array String (participants)

AttributesTypeDescription
phonestringParticipant's phone number
isAdminstringIndicates if the participant is a group admin
isSuperAdminstringIndicates if the participant is the group creator

Example

{
"phone": "120363019502650977-group",
"description": "Z-API Group",
"owner": "5511999999999",
"subject": "My group on Z-API",
"creation": 1588721491000,
"invitationLink": null,
"communityId": null,
"adminOnlyMessage": false,
"adminOnlySettings": false,
"requireAdminApproval": false,
"isGroupAnnouncement": false,
"participants": [
{
"phone": "5511888888888",
"isAdmin": false,
"isSuperAdmin": false
},
{
"phone": "5511777777777",
"isAdmin": true,
"isSuperAdmin": false,
"short": "ZAPIs",
"name": "ZAPIs Boys"
}
],
"subjectTime": 1617805323000,
"subjectOwner": "554497050785"
}

405#

In this case, ensure that you are correctly following the method specification, i.e., check if you are sending a POST or GET request as specified at the beginning of this topic.

415#

If you receive a 415 error, make sure to add the correct "Content-Type" header in the request. In most cases, it should be "application/json".


Code#