Skip to main content
chat.group_icon_updated fires when a group chat’s icon changes.

Read the payload

The data object is the ChatGroupIconUpdatedEvent schema from the API contract. The envelope around it is the same on every event and is described in the event catalog.

Handle the event

Replace the stored icon for chat_id with new_value, and treat null as no icon. Fetch the image when you need it rather than assuming the URL stays valid for long.

Next steps