(webhook)
Operations related to webhook api
- get_all - Retrieve a Webhook
- create - Create a webhook
- get - Retrieve a webhook
- update - Update a webhook
- delete - Delete a webhook
- get_logs - Retrieve webhook logs
- get_log - Retrieve a webhook log
- resend_log - Resend a webhook
Retrieve a Webhook
from livepeer import Livepeer
s = Livepeer(
api_key="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.webhook.get_all()
if res.data is not None:
# handle response
pass
Parameter | Type | Required | Description |
---|---|---|---|
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.GetWebhooksResponse
Error Object | Status Code | Content Type |
---|---|---|
errors.SDKError | 4xx-5xx | / |
To create a new webhook, you need to make an API call with the events you want to listen for and the URL that will be called when those events occur.
from livepeer import Livepeer
from livepeer.models import components
s = Livepeer(
api_key="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.webhook.create(request={
"name": "test_webhook",
"url": "https://my-service.com/webhook",
"project_id": "aac12556-4d65-4d34-9fb6-d1f0985eb0a9",
"events": [
components.Events.STREAM_STARTED,
components.Events.STREAM_IDLE,
],
"shared_secret": "my-secret",
"stream_id": "de7818e7-610a-4057-8f6f-b785dc1e6f88",
})
if res.webhook is not None:
# handle response
pass
Parameter | Type | Required | Description |
---|---|---|---|
request |
components.WebhookInput | ✔️ | The request object to use for the request. |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.CreateWebhookResponse
Error Object | Status Code | Content Type |
---|---|---|
errors.SDKError | 4xx-5xx | / |
Retrieve a webhook
from livepeer import Livepeer
s = Livepeer(
api_key="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.webhook.get(id="<id>")
if res.webhook is not None:
# handle response
pass
Parameter | Type | Required | Description |
---|---|---|---|
id |
str | ✔️ | N/A |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
Error Object | Status Code | Content Type |
---|---|---|
errors.SDKError | 4xx-5xx | / |
Update a webhook
from livepeer import Livepeer
from livepeer.models import components
s = Livepeer(
api_key="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.webhook.update(id="<id>", webhook={
"name": "test_webhook",
"url": "https://my-service.com/webhook",
"project_id": "aac12556-4d65-4d34-9fb6-d1f0985eb0a9",
"events": [
components.Events.STREAM_STARTED,
components.Events.STREAM_IDLE,
],
"shared_secret": "my-secret",
"stream_id": "de7818e7-610a-4057-8f6f-b785dc1e6f88",
})
if res.webhook is not None:
# handle response
pass
Parameter | Type | Required | Description |
---|---|---|---|
id |
str | ✔️ | N/A |
webhook |
components.WebhookInput | ✔️ | N/A |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.UpdateWebhookResponse
Error Object | Status Code | Content Type |
---|---|---|
errors.SDKError | 4xx-5xx | / |
Delete a webhook
from livepeer import Livepeer
s = Livepeer(
api_key="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.webhook.delete(id="<id>")
if res.webhook is not None:
# handle response
pass
Parameter | Type | Required | Description |
---|---|---|---|
id |
str | ✔️ | N/A |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.DeleteWebhookResponse
Error Object | Status Code | Content Type |
---|---|---|
errors.SDKError | 4xx-5xx | / |
Retrieve webhook logs
from livepeer import Livepeer
s = Livepeer(
api_key="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.webhook.get_logs(id="<id>")
if res.data is not None:
# handle response
pass
Parameter | Type | Required | Description |
---|---|---|---|
id |
str | ✔️ | N/A |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.GetWebhookLogsResponse
Error Object | Status Code | Content Type |
---|---|---|
errors.SDKError | 4xx-5xx | / |
Retrieve a webhook log
from livepeer import Livepeer
s = Livepeer(
api_key="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.webhook.get_log(id="<id>", log_id="<value>")
if res.webhook_log is not None:
# handle response
pass
Parameter | Type | Required | Description |
---|---|---|---|
id |
str | ✔️ | N/A |
log_id |
str | ✔️ | N/A |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.GetWebhookLogResponse
Error Object | Status Code | Content Type |
---|---|---|
errors.SDKError | 4xx-5xx | / |
Use this API to resend the same webhook request. This is useful when developing and debugging, allowing you to easily repeat the same webhook to check or fix the behaviour in your handler.
from livepeer import Livepeer
s = Livepeer(
api_key="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.webhook.resend_log(id="<id>", log_id="<value>")
if res.webhook_log is not None:
# handle response
pass
Parameter | Type | Required | Description |
---|---|---|---|
id |
str | ✔️ | N/A |
log_id |
str | ✔️ | N/A |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.ResendWebhookResponse
Error Object | Status Code | Content Type |
---|---|---|
errors.SDKError | 4xx-5xx | / |