Search.../

onPostPinned( )

Developer Preview

An existing post was pinned to the top of the post list.

Authorization

Request

This endpoint does not take any parameters

Response Object

Returns an empty object.

Status/Error Codes

Was this helpful?

onPostPinned example

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