Video Webhooks
How to setup webhook enpoint at Gotipath Stream Library
1.
2.
Example Webhook Response
{
"event":"queue",
"event_type":"video",
"notification_time":"unix_timestamp",
"payload":{
"client_id":"b1bef3d5-a2dd-4fec-9bf3-061038ce2c41",
"direct_play_url":"",
"libraryId":"34f4dcc3-a5f0-48dd-8c62-b467929d2ec6",
"manifest_url":"",
"status":"queue",
"video_id":"6ce57355-8c45-4e60-89ee-e2f167609cb7"
}
}
{
"event": "processing",
"event_type": "video",
"notification_time": "unix_timestamp",
"payload": {
"client_id": "b1bef3d5-a2dd-4fec-9bf3-061038ce2c41",
"direct_play_url": "",
"libraryId": "34f4dcc3-a5f0-48dd-8c62-b467929d2ec6",
"manifest_url": "",
"status": "processing",
"video_id": "6ce57355-8c45-4e60-89ee-e2f167609cb7"
}
}
{
"event": "transcoding",
"event_type": "video",
"notification_time": "unix_timestamp",
"payload": {
"client_id": "b1bef3d5-a2dd-4fec-9bf3-061038ce2c41",
"direct_play_url": "",
"libraryId": "34f4dcc3-a5f0-48dd-8c62-b467929d2ec6",
"manifest_url": "",
"status": "transcoding",
"video_id": "6ce57355-8c45-4e60-89ee-e2f167609cb7"
}
}
{
"event": "transcoding_finished",
"event_type": "video",
"notification_time": "unix_timestamp",
"payload": {
"client_id": "b1bef3d5-a2dd-4fec-9bf3-061038ce2c41",
"direct_play_url": "https://player.gotipath.com/stream/34f4dcc3-a5f0-48dd-8c62-b467929d2ec6/default/8a1b8951-b457-46f2-b909-5585515f06a9",
"libraryId": "34f4dcc3-a5f0-48dd-8c62-b467929d2ec6",
"manifest_url": "https://eeacn4vb.gpcdn.net/69841c17-4626-41f1-8290-a819c0caeffc/playlist.m3u8",
"status": "playable",
"video_id": "8a1b8951-b457-46f2-b909-5585515f06a9"
}
}
{
"event": "transcoding_failed",
"event_type": "video",
"notification_time": "unix_timestamp",
"payload": {
"client_id": "b1bef3d5-a2dd-4fec-9bf3-061038ce2c41",
"direct_play_url": "",
"libraryId": "34f4dcc3-a5f0-48dd-8c62-b467929d2ec6",
"manifest_url": "",
"status": "failed",
"video_id": "8a1b8951-b457-46f2-b909-5585515f06a9"
}
}
Modified at 2023-11-22 13:52:44