Search.../

onCommentUnmarked( )

Developer Preview

Triggered when a comment is unmarked.

Authorization

Request

This endpoint does not take any parameters

Response Object

Returns an empty object.

Status/Error Codes

Was this helpful?

onCommentUnmarked example

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