API Reference
cURL
curl --request PUT \ --url http://localhost:{port}/api/v1/chats/{chatId}/group \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "subject": "<string>", "description": "<string>", "settings": { "sendMessages": true, "editGroupInfo": true }, "picture": "<string>" } '
{ "success": true, "chatId": "<string>", "message": "<string>", "details": [ "<any>" ], "actions": { "subjectUpdated": true, "descriptionUpdated": true, "settingsUpdated": true, "pictureUpdated": true } }
Update group properties (subject, description, settings, picture) in a single request
JWT token authentication
ID of the group chat
New subject (name) for the group
New description for the group
Group settings to update
Show child attributes
Base64 encoded image data for group picture
Group updated successfully
Whether the action was successful
ID of the group the action was performed on
Additional details about the operation result
Detailed results of multiple operations
Actions performed