Skip to content

Webhooks

FFmate supports webhooks, allowing you to integrate real-time event notifications into your media processing workflows.
By registering a webhook, external systems can automatically receive POST requests from FFmate when specific events occur—such as task creation, task status updates, batch processing events, or changes to presets.

This enables powerful automation, seamless third-party integration, and real-time monitoring of FFmpeg-based transcoding jobs—without the need to constantly poll the API.

Creating a Webhook

To create a webhook, send a POST request to the FFmate API specifying the event you want to subscribe to and the URL where FFmate should deliver the notification.

sh
curl -X POST http://localhost:3000/api/v1/webhooks \
     -H "Content-Type: application/json" \
     -d '{
       "event": "task.created",
       "url": "https://yourserver.com/webhook-handler"
     }'

After you create a webhook, FFmate responds with a JSON object containing the id of the newly created webhook.

Webhook Payload:

When the event is triggered, FFmate sends a POST request to your specified URL, containing all relevant data about the event in the request body.

json
{
  "event": "task.created",
  "timestamp": "2025-02-13T14:05:32Z",
  "data": {
    "taskId": "550e8400-e29b-41d4-a716-446655440000",
    "inputFile": "/source/video.mp4",
    "outputFile": "/destination/video_converted.mp4",
    "status": "queued"
  }
}

Available Webhook Events

FFmate supports a range of webhook events, organized into categories based on what they track.

Task Events:

EventDescription
task.createdTriggered when a new task is added.
task.updatedTriggered when a task's status or details are updated.
task.deletedTriggered when a task is deleted.

Batch Events:

EventDescription
batch.createdTriggered when a new batch of tasks is created.
batch.finishedTriggered when a batch of tasks is completed.

Preset Events:

EventDescription
preset.createdTriggered when a new preset is created.
preset.updatedTriggered when an existing preset is modified.
preset.deletedTriggered when a preset is removed.

Watchfolder Events:

EventDescription
watchfolder.createdTriggered when a new watchfolder is created.
watchfolder.updatedTriggered when an existing watchfolder is modified.
watchfolder.deletedTriggered when a watchfolder is removed.

Webhook Events :

EventDescription
webhook.createdTriggered when a new webhook is registered.
webhook.deletedTriggered when a webhook is removed.

Listing all Webhooks

sh
curl -X GET 'http://localhost:3000/api/v1/webhooks?page=0&perPage=10' \
     -H 'accept: application/json'

Query Parameters:

  • page [optional] – Specifies which page of results to retrieve. Default: 0.
  • perPage [optional] – Defines how many webhooks should be included in each page. Default: 100.

Deleting a Webhook

To remove a webhook, send a DELETE request with its ID:

sh
curl -X DELETE http://localhost:3000/api/v1/webhooks/{webhookId} \
     -H "accept: application/json"

Setting Up Your Webhook Endpoint

When FFmate sends a webhook, it expects your server to be ready to receive and respond to the event. Here's what your endpoint should do:

  1. Accept HTTP POST requests

FFmate sends events using a POST request with a JSON payload.
Your endpoint should be configured to accept and correctly parse these requests.

  1. Return a 200 OK response

To confirm that the event was received successfully, your server must return an HTTP 200 OK status.
Any other status code may cause FFmate to assume the delivery failed.

  1. Log incoming requests

FFmate does not store webhook logs.
If something goes wrong, your application should log incoming webhook events to support debugging or auditing.