This node enables integration between ComfyUI and external services by adding callback capabilities to the image saving process. When an image is saved, the node automatically call your webhook with your specified URL with custom data.
A custom ComfyUI node that extends the Save Image node with callback functionality.
This node enables integration between ComfyUI and external services by adding callback capabilities to the image saving process. When an image is saved, the node automatically call your webhook with your specified URL with custom data.
ComfyUI/custom_nodes
directory{
"prompt": prompt_data,
"extra_data": {
"extra_pnginfo": {
"callback_data": {
"callback_url": "http://your_callback_url",
"custom_field1": "value1",
"custom_field2": "value2"
}
}
}
}
prompt_data
: Your exported ComfyUI workflow promptcallback_url
: The URL that will be called after image savingcallback_data
will be included in the callback request