> 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: proGallery # Webhook link: https://dev.wix.com/docs/api-reference/assets/pro-gallery/gallery-item-updated.md ## Introduction Triggered when a media item in a specified gallery is updated. --- ## REST API ### Schema ``` Webhook: Gallery Item Updated Description: Triggered when a media item in a specified gallery 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: GalleryItemUpdated | description: The event body. - name: updatedItem | type: Item | description: Updated gallery item. - ONE-OF: - name: image | type: Image | description: Details about the image. - name: imageInfo | type: Image | description: Information about the Wix Media image. - name: id | type: string | description: *Required.** WixMedia image GUID. - name: url | type: string | description: Image URL. - name: height | type: integer | description: *Required.** Original image height. - name: width | type: integer | description: *Required.** Original image width. - name: altText | type: string | description: Image alt text. - name: filename | type: string | description: Image filename. - name: focalPoint | type: Point | description: Focal point of the image. - name: x | type: number | description: X-coordinate of the focal point. - name: y | type: number | description: Y-coordinate of the focal point. - name: exif | type: object | description: Set of key-value pairs describing the media in [Exchangeable Image File format](https://en.wikipedia.org/wiki/Exif). - name: quality | type: integer | description: Image compression level.
Min: `30`
Max: `100` - name: unsharpMasking | type: UnsharpMasking | description: [Unsharp masking](https://en.wikipedia.org/wiki/Unsharp_masking) values of the image. - name: amount | type: | description: Unsharp masking amount. Controls the sharpening strength.
Min: `0`
Max: `5` - name: radius | type: | description: Unsharp masking radius in pixels. Controls the sharpening width. - name: threshold | type: | description: Unsharp masking threshold. Controls how different neighboring pixels must be for sharpening to apply.
Min: `0`
Max: `1` - name: video | type: Video | description: Details about the video. - name: type | type: VideoType | description: Type of video. - enum: UNDEFINED, WIX_MEDIA, YOUTUBE, VIMEO - name: videoInfo | type: VideoV2 | description: Information about the video. - name: id | type: string | description: WixMedia GUID. Required when associating an existing Wix Media video. - name: url | type: string | description: Video URL. Required when associating a video from an external source. Supported sources: YouTube, Vimeo. - name: resolutions | type: array | description: Available resolutions for the video, starting with the optimal resolution. - name: url | type: string | description: *Required.** Video URL. - name: height | type: integer | description: *Required.** Video height. - name: width | type: integer | description: *Required.** Video width. - name: format | type: string | description: *Required.** Video format. For example, `mp4` or `hls`. - name: quality | type: string | description: Video quality. For example, `480p` or `720p`. - name: filename | type: string | description: Video filename. - name: filename | type: string | description: Video filename. - name: posters | type: array | description: Video posters. - name: durationInMillis | type: integer | description: Manually defined video duration in milliseconds. - name: text | type: Text | description: Details about the text file. - name: html | type: string | description: Text in HTML format. - name: css | type: object | description: Set of key-value pairs describing the [CSS style](https://en.wikipedia.org/wiki/CSS) of the text. __Note:__ The object structure is customizable. See the [List Gallery Items](https://dev.wix.com/api/rest/site-content/pro-gallery/list-gallery-items) code example for supported values. - name: editorHtml | type: string | description: Reserved for internal use. - name: editorFontId | type: string | description: Reserved for internal use. - name: id | type: string | description: Item GUID. - name: sortOrder | type: number | description: Index that determines which position a media item is displayed in the gallery.
Default: [Epoch](https://www.epoch101.com/) timestamp.
>**Note:** If you assign the same sort order index to more than one media item in a gallery, the function fails. - name: title | type: string | description: Item title. - name: description | type: string | description: Item description. - name: link | type: Link | description: Link from the item. You can link to Wix sites or external URLs. - name: text | type: string | description: Display text of the link. - name: url | type: string | description: Target URL of the link. - name: type | type: Type | description: Type of item. - enum: UNDEFINED, IMAGE, VIDEO, TEXT - name: createdDate | type: string | description: Date and time the item was created. - name: updatedDate | type: string | description: Date and time the item was last updated. - name: tags | type: Tags | description: Item tags. - name: values | type: array | description: List of tags assigned to the media item. ``` ### Examples ```curl { "id": "d95986ad-f137-4b20-900e-066c4ab02c90", "entityFqdn": "wix.pro_gallery.v2.gallery", "slug": "gallery_item_updated", "entityId": "4937b26c-b9d3-4c43-b772-f1f3ba840b3d", "actionEvent": { "body": { "updatedItem": { "id": "a045b201-ee7d-447c-b0c3-746cba83253c", "sortOrder": 1644317968.985, "title": "Some Title", "description": "Some Description", "type": "IMAGE", "image": { "type": "WIX_MEDIA", "imageInfo": { "id": "11062b_12703ed9a6574547bcaed22b1ce44eef~mv2.jpeg", "url": "https://static.wixstatic.com/media/11062b_12703ed9a6574547bcaed22b1ce44eef~mv2.jpeg", "height": 4298, "width": 6446 }, "focalPoint": { "x": 0.5, "y": 0.5 } } } } }, "eventTime": "2021-12-16T12:32:37.513965Z", "triggeredByAnonymizeRequest": false } ``` ---