Triggered when a post is unliked.
Unique event ID. Allows clients to ignore duplicate webhooks.
Fully qualified domain name of the entity associated with the event. Expected wix.blog.post
.
Event name. Expected unliked
.
ID of the entity associated with the event.
Event timestamp.
Whether the event was triggered as a result of a privacy regulation application (for example, GDPR).
If present, indicates the action that triggered the event.
Event information.
The data payload will include the following as an encoded JWT:
{
"data": {
"eventType": "wix.blog.v3.post_unliked",
"instanceId": "<app-instance-id>",
"data": "<stringified-JSON>",
// The identity field is sent as a stringified JSON
"identity": {
"identityType": "<identityType>", // ANONYMOUS_VISITOR, MEMBER, WIX_USER, APP
"anonymousVisitorId": "<anonymousVisitorId>", // in case of ANONYMOUS_VISITOR
"memberId": "<memberId>", // in case of MEMBER
"wixUserId": "<wixUserId>", // in case of WIX_USER
"appId": "<appId>" // in case of APP
}
}
}
{
"entityId": "7d7ebfc8-ae30-4d97-8a9a-b10173b8a04c",
"actionEvent": {
"body": {
"postId": "7d7ebfc8-ae30-4d97-8a9a-b10123b8a04c"
}
},
"slug": "unliked",
"id": "7626b90d-9516-4530-bb48-81af66a5f023",
"entityFqdn": "wix.blog.post",
"eventTime": "2021-03-02T08:40:55.512Z",
"triggeredByAnonymizeRequest": false
}