Triggered when a tag is updated.
Unique event ID. Allows clients to ignore duplicate webhooks.
Fully qualified domain name of the entity associated with the event. Expected wix.blog.v3.tag
.
Event name. Expected updated
.
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.tag_updated",
"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
}
}
}
{
"id": "a9ae74d5-406d-43f1-9d2c-27033170952d",
"entityFqdn": "wix.blog.v3.tag",
"slug": "updated",
"entityId": "c338a90d-8137-4dbc-95c0-5b46ce8b92e2",
"updatedEvent": {
"currentEntity": {
"id": "c338a90d-8137-4dbc-95c0-5b46ce8b92e2",
"label": "some tag",
"slug": "some-tag",
"createdDate": "2021-09-07T12:30:38.241Z",
"updatedDate": "2021-09-07T12:30:38.241Z",
"publicationCount": 0,
"postCount": 0,
"url": {
"base": "https://some-user.wixsite.com/some-site",
"path": "/blog/tags/some-tag"
},
"language": "en"
}
},
"eventTime": "2021-09-07T12:30:38.301Z"
}