You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/imagekit/models/unsafe_unwrap_webhook_event.rb
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,21 +2,31 @@
2
2
3
3
moduleImagekit
4
4
moduleModels
5
+
# Triggered when a new video transformation request is accepted for processing.
6
+
# This event confirms that ImageKit has received and queued your transformation
7
+
# request. Use this for debugging and tracking transformation lifecycle.
5
8
moduleUnsafeUnwrapWebhookEvent
6
9
extendImagekit::Internal::Type::Union
7
10
11
+
# Triggered when a new video transformation request is accepted for processing. This event confirms that ImageKit has received and queued your transformation request. Use this for debugging and tracking transformation lifecycle.
# Triggered when video encoding is finished and the transformed resource is ready to be served. This is the key event to listen for - update your database or CMS flags when you receive this so your application can start showing the transformed video to users.
# Triggered when an error occurs during video encoding. Listen to this webhook to log error reasons and debug issues. Check your origin and URL endpoint settings if the reason is related to download failure. For other errors, contact ImageKit support.
# Triggered when a pre-transformation completes successfully. The file has been processed with the requested transformation and is now available in the Media Library.
# Triggered when a pre-transformation fails. The file upload may have been accepted, but the requested transformation could not be applied.
16
24
variant->{Imagekit::UploadPreTransformErrorEvent}
17
25
26
+
# Triggered when a post-transformation completes successfully. The transformed version of the file is now ready and can be accessed via the provided URL. Note that each post-transformation generates a separate webhook event.
Copy file name to clipboardExpand all lines: lib/imagekit/models/unwrap_webhook_event.rb
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,21 +2,31 @@
2
2
3
3
moduleImagekit
4
4
moduleModels
5
+
# Triggered when a new video transformation request is accepted for processing.
6
+
# This event confirms that ImageKit has received and queued your transformation
7
+
# request. Use this for debugging and tracking transformation lifecycle.
5
8
moduleUnwrapWebhookEvent
6
9
extendImagekit::Internal::Type::Union
7
10
11
+
# Triggered when a new video transformation request is accepted for processing. This event confirms that ImageKit has received and queued your transformation request. Use this for debugging and tracking transformation lifecycle.
# Triggered when video encoding is finished and the transformed resource is ready to be served. This is the key event to listen for - update your database or CMS flags when you receive this so your application can start showing the transformed video to users.
# Triggered when an error occurs during video encoding. Listen to this webhook to log error reasons and debug issues. Check your origin and URL endpoint settings if the reason is related to download failure. For other errors, contact ImageKit support.
# Triggered when a pre-transformation completes successfully. The file has been processed with the requested transformation and is now available in the Media Library.
# Triggered when a pre-transformation fails. The file upload may have been accepted, but the requested transformation could not be applied.
16
24
variant->{Imagekit::UploadPreTransformErrorEvent}
17
25
26
+
# Triggered when a post-transformation completes successfully. The transformed version of the file is now ready and can be accessed via the provided URL. Note that each post-transformation generates a separate webhook event.
0 commit comments