> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Package: feedbackModeration # Namespace: reportsV2 # Webhook link: https://dev.wix.com/docs/api-reference/crm/community/feedback-moderation/reports-v2/entity-report-summary-changed.md ## Introduction Triggered when count of reports by reason is updated. --- ## REST API ### Schema ``` Webhook: Entity Report Summary Changed Description: Triggered when count of reports by reason is updated. Event body: - name: id | type: string | description: Unique event ID. Allows clients to ignore duplicate events. - name: entityFqdn | type: string | description: Fully qualified domain name of the entity associated with the event. - name: slug | type: string | description: Event name. - name: entityId | type: string | description: ID of the entity associated with the event. - name: eventTime | type: string (date-time) | description: Event timestamp. - name: triggeredByAnonymizeRequest | type: boolean | description: Whether the event was triggered as a result of a privacy regulation application such as GDPR. - name: originatedFrom | type: string | description: If present, indicates the action that triggered the event. - name: actionEvent | type: object | description: Custom action event details. - name: body | type: EntityReportSummaryChanged | description: The event body. - name: entityName | type: string | description: Reported entity name. - name: entityId | type: string | description: Reported entity GUID. - name: reportCount | type: integer | description: Number of reports. - name: reasonCounts | type: array | description: Number of reports per reason type. - name: reasonType | type: Type | description: Reason type. - enum: - UNKNOWN_TYPE: Unknown type. This value is not used. - OTHER: Entity is reported for other reasons. Specify in `details`. - SPAM: Entity is reported for spam. - NUDITY_OR_SEXUAL_HARASSMENT: Entity is reported for nudity or sexual harassment. - HATE_SPEECH_OR_SYMBOLS: Entity is reported for hate speech. - FALSE_INFORMATION: Entity is reported for false information. - COMMUNITY_GUIDELINES_VIOLATION: Entity is reported for a community guideline violation. - VIOLENCE: Entity is reported for violence. - SUICIDE_OR_SELF_INJURY: Entity is reported for mentioning suicide. - UNAUTHORIZED_SALES: Entity is reported for unuathorized sales. - EATING_DISORDER: Entity is reported for mentioning an eating disorder. - INVOLVES_A_CHILD: Entity is reported for involving a minor. - TERRORISM: Entity is reported for mentioning terrorism. - DRUGS: Entity is reported for mentioning drugs. - UNLAWFUL: Entity is reported for unlawful actions. - EXPOSING_IDENTIFYING_INFO: Entity is reported for exposing identifying details. - name: count | type: integer | description: Number of reports. ``` ### Examples ```curl { "id": "6a986053-6942-4ca7-abe4-a04ee0f9c234", "entityFqdn": "wix.reports.v2.report", "slug": "entity_report_summary_changed", "entityId": "b0c15082-c4da-4bd2-b040-1f1b3546edba", "actionEvent": { "body": { "entityName": "comment", "entityId": "50353fbc-b265-4f03-888f-a53aa272758d", "reportCount": 3, "reasonCounts": [ { "reasonType": "SPAM", "count": 2 }, { "reasonType": "DRUGS", "count": 1 } ] } }, "eventTime": "2021-01-27T11:23:43.804694Z", "triggeredByAnonymizeRequest": false } ``` --- ## JavaScript SDK ### Schema ``` Webhook: onReportEntityReportSummaryChanged Description: Triggered when count of reports by reason is updated. Payload: ReportEntityReportSummaryChangedEnvelope - name: data | type: EntityReportSummaryChanged | description: none - name: entityName | type: string | description: Reported entity name. - name: entityId | type: string | description: Reported entity GUID. - name: reportCount | type: integer | description: Number of reports. - name: reasonCounts | type: array | description: Number of reports per reason type. - name: reasonType | type: Type | description: Reason type. - enum: - UNKNOWN_TYPE: Unknown type. This value is not used. - OTHER: Entity is reported for other reasons. Specify in `details`. - SPAM: Entity is reported for spam. - NUDITY_OR_SEXUAL_HARASSMENT: Entity is reported for nudity or sexual harassment. - HATE_SPEECH_OR_SYMBOLS: Entity is reported for hate speech. - FALSE_INFORMATION: Entity is reported for false information. - COMMUNITY_GUIDELINES_VIOLATION: Entity is reported for a community guideline violation. - VIOLENCE: Entity is reported for violence. - SUICIDE_OR_SELF_INJURY: Entity is reported for mentioning suicide. - UNAUTHORIZED_SALES: Entity is reported for unuathorized sales. - EATING_DISORDER: Entity is reported for mentioning an eating disorder. - INVOLVES_A_CHILD: Entity is reported for involving a minor. - TERRORISM: Entity is reported for mentioning terrorism. - DRUGS: Entity is reported for mentioning drugs. - UNLAWFUL: Entity is reported for unlawful actions. - EXPOSING_IDENTIFYING_INFO: Entity is reported for exposing identifying details. - name: count | type: integer | description: Number of reports. - name: metadata | type: EventMetadata | description: none - name: instanceId | type: string | description: App instance GUID. - name: eventType | type: string | description: Event type. - name: identity | type: IdentificationData | description: The identification type and identity data. - ONE-OF: - name: anonymousVisitorId | type: string | description: GUID of a site visitor that has not logged in to the site. - name: memberId | type: string | description: GUID of a site visitor that has logged in to the site. - name: wixUserId | type: string | description: GUID of a Wix user (site owner, contributor, etc.). - name: appId | type: string | description: GUID of an app. - name: identityType | type: WebhookIdentityType | description: - enum: UNKNOWN, ANONYMOUS_VISITOR, MEMBER, WIX_USER, APP - name: accountInfo | type: AccountInfo | description: Details related to the account - name: accountId | type: string | description: GUID of the Wix account associated with the event. - name: parentAccountId | type: string | description: GUID of the parent Wix account. Only included when accountId belongs to a child account. - name: siteId | type: string | description: GUID of the Wix site associated with the event. Only included when the event is tied to a specific site. - name: _id | type: string | description: Event GUID. With this GUID you can easily spot duplicated events and ignore them. - name: entityFqdn | type: string | description: Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities. For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`. - name: slug | type: string | description: Event action name, placed at the top level to make it easier for users to dispatch messages. For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`. - name: entityId | type: string | description: GUID of the entity associated with the event. - name: eventTime | type: Date | description: Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. - name: triggeredByAnonymizeRequest | type: boolean | description: Whether the event was triggered as a result of a privacy regulation application (for example, GDPR). - name: originatedFrom | type: string | description: If present, indicates the action that triggered the event. - name: entityEventSequence | type: string | description: A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number. You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it. ``` ### Examples ```javascript import { reports } from '@wix/reports'; reports.onReportEntityReportSummaryChanged((event) => { // handle your event here }); ``` ```javascript import { createClient, AppStrategy } from '@wix/sdk'; import { reports } from '@wix/reports'; const wixClient = createClient({ auth: AppStrategy({ appId: 'MY-APP-ID', publicKey: 'YOUR_APP_PUBLIC_KEY', }), modules: { reports, }, }); wixClient.reports.onReportEntityReportSummaryChanged((event) => { // handle your event here }); ``` ---