How to be notified of MK.IO events
Webhook notifications allow you to receive HTTP requests when specific events occur in MK.IO. For example, when a transcode job finishes, a notification can be sent to a designated endpoint with the details of the job.
You can configure webhook notifications by creating a set of rules, selecting the events you want to receive, and specifying the endpoint details, including any required headers or query parameters.
Configuring webhooks
You can configure endpoints and associate specific events with them using rules. Each webhook rule includes:
- The target URL for the HTTP request
- Custom headers (e.g. authentication tokens)
- A list of events to send to the endpoint
Example rule
{
"spec": {
"enabled": true,
"url": "https://api.example.com/webhooks",
"authentication": {
"headers": {
"Authorization": "Bearer mytoken1234"
}
},
"queryParams": {
"process": "123456"
},
"events": [
"MediaKind.JobStarted",
"MediaKind.JobFinished"
]
}
}
In the example above:
- The configuration is enabled,
- Any events of type
MediaKind.JobStarted
orMediaKind.JobFinished
will cause this webhook rule to fire, - A
POST
request will be made tohttps://api.example.com/webhooks?process=123456
with theAuthorization
header included in the request.
Query parameters can be set in spec.queryParams
or spec.authentication.queryParams
, while HTTP headers can be set in spec.headers
or spec.authentication.headers
. The ones under the authentication
section are not returned when you read the rule back; instead, you see a string of asterisks, protecting your token information from other users.
API endpoints
Please see our API reference for details of the endpoints to create, edit and remove webhook rules.
Webhook events
Standard data format
Our webhooks use a standard body based upon Cloud Events .
{
"specversion": "1.0",
"id": "{unique_id}",
"type": "{webhook_type}",
"source": "{object_url}",
"time": "{event_time}",
"datacontenttype": "application/json",
"data": {
"projectName": "{project_name}",
"previousState": "{value of state before this event}",
"state": "{new value of state}",
"resource": {
# The contents of the object, as if you had done a GET on {object_url}
}
}
}
Jobs
Please see our documentation on Jobs.
MediaKind.JobStarted
This event is sent when when a job is removed from the queue and begins processing.
Field | Value |
---|---|
.source | /api/v1/projects/{project_name}/transforms/{transform_name}/jobs/{job_name} |
.data.previousState | Queued |
.data.state | Processing |
MediaKind.JobFinished
This event is sent when a job completes, whether successfully or not.
Field | Value |
---|---|
.source | /api/v1/projects/{project_name}/transforms/{transform_name}/jobs/{job_name} |
.data.previousState | Processing |
.data.state | Canceled | Error | Finished |
Streaming Locators
Please see our documentation on Streaming Locators.
MediaKind.StreamingLocatorCreated
This event is sent once a new streaming locator has been successfully created and can be used.
Field | Value |
---|---|
.source | /api/v1/projects/{project_name}/media/streamingLocators/{locator_name} |
.data.previousState | Creating |
.data.state | Created |
Scheduled Operations
Please see our documentation on Scheduled Operations (if this feature is available to your organization)
MediaKind.ScheduledOperationAccepted
This event is sent once a new scheduled operation has been accepted by the scheduling engine. Initial checks have been passed, and the operation should be performed as requested.
Field | Value |
---|---|
.source | /api/v1/projects/{project_name}/.../scheduledOperations/{scheduled_operation_name} |
.data.previousState | Pending |
.data.state | Accepted |
MediaKind.ScheduledOperationOngoing
This event is sent once the scheduling engine has begun processing a scheduled operation. This event should occur before the any scheduled time on the operation.
Field | Value |
---|---|
.source | /api/v1/projects/{project_name}/.../scheduledOperations/{scheduled_operation_name} |
.data.previousState | Accepted |
.data.state | Ongoing |
MediaKind.ScheduledOperationCompleted
This event is sent once the scheduling engine has completed processing a scheduled operation. This event should occur before the any scheduled time on the operation.
Field | Value |
---|---|
.source | /api/v1/projects/{project_name}/.../scheduledOperations/{scheduled_operation_name} |
.data.previousState | Ongoing |
.data.state | Completed |