Search.../

onActivityCounterUpdated( )

Fired when an activity counter is updated.

Authorization

Request

This endpoint does not take any parameters

Response Object

Returns an empty object.

Status/Error Codes

Was this helpful?

onActivityCounterUpdated example

Copy Code
1
2 export function wixMembers_onActivityCounterUpdated(event) {
3 const eventId = event.metadata.id
4 const entityId = event.entity._id;
5 }
6
7