GET
/api/groups/{groupJid}/pictureRetrieves the URL of the profile picture for a specific group.
Get Group Profile Picture
Retrieves the URL of the profile picture for a specific group.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| groupJid | string | Yes | The JID (Jabber ID) of the group in the format [email protected]. |
Code Examples
curl "https://www.wasenderapi.com/api/groups/{groupJid}/picture"
-H "Authorization: Bearer YOUR_API_KEY"Response Examples
{
"success": true,
"data": {
"imgUrl": "https:\/\/profile.pic.url\/image.jpg"
}
}