Webhooks API
Create webhook
Webhooks can push notifications to your server, rather than polling for changes. We currently offer four events:
encoding_started
Occurs when the encoding process for a new video begins.
partial_finished
Occurs when the encoding process for a quality of a video has been completed.
encoding_finished
Occurs when the encoding process for a new video has been completed.
encoding_failed
Occurs when the encoding process for a new video has failed.
file_received
Occurs when a new video file has been successfully uploaded to the system.
The request body when create a webhook will look like this:
{
"name": "your webhook name", // If not provided, the name will be the default (default_name_webhook).
"url": "your link",
"file_received": true, // The webhook event that you wish to filter on
"encoding_started": true, // The webhook event that you wish to filter on
"partial_finished": true, // The webhook event that you wish to filter on
"encoding_finished": true, // The webhook event that you wish to filter on
"encoding_failed": true // The webhook event that you wish to filter on
}
For example, this would be a simplified body for create webhook:
{
"status": "success",
"data": {
"webhook": {
"id": "string",
"user_id": "string",
"name": "string",
"url": "string",
"file_received": true,
"encoding_started": true,
"encoding_finished": true,
"created_at": "2023-06-11T11:11:11.111111Z",
"updated_at": "2023-06-11T11:11:11.111111Z",
"last_triggered_at": "2023-06-11T11:11:11.111111Z"
}
}
}
Headers
Body
Response
curl --location 'https://api.aiozstream.network/api/webhooks' \
--header 'accept: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'Content-Type: application/json' \
--data '{
"file_received": false,
"encoding_started": true,
"encoding_finished": true,
"url": "string",
"name": "string"
}'
List webhook
Retrieve a list of all webhooks configured for the current workspace.
Query
Headers
Response
curl --location 'https://api.aiozstream.network/api/webhooks?search=string&limit=1&sort_by=created_at&order_by=asc&encoding_started=true' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'accept: application/json'
Retrieve webhook
Retrieve a webhook by its unique identifier.
Parameters
Headers
Response
curl --location 'https://api.aiozstream.network/api/webhooks/{webhook_id}' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'accept: application/json'
Update webhook
This endpoint is used to update the webhook.
Parameters
Headers
Body
Response
curl --location --request PATCH 'https://api.aiozstream.network/api/webhooks/{webhook_id}' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"file_received": true,
"encoding_started": false,
"encoding_finished": true,
"name": "string",
"url": "string"
}'
Delete webhook
This endpoint is used to update the webhook.
Parameters
Headers
Response
curl --location --request DELETE 'https://api.aiozstream.network/api/webhooks/{webhook_id}' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'accept: application/json'
Trigger webhook
This endpoint is used to trigger the webhook.
Parameters
Headers
Response
curl --location --request POST 'https://api.aiozstream.network/api/webhooks/check/{webhook_id}' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'accept: application/json'