Skip to content
Start here

Webhooks

View webhooks
stream.webhooks.get(WebhookGetParams**kwargs) -> WebhookGetResponse
GET/accounts/{account_id}/stream/webhook
Create webhooks
stream.webhooks.update(WebhookUpdateParams**kwargs) -> WebhookUpdateResponse
PUT/accounts/{account_id}/stream/webhook
Delete webhooks
stream.webhooks.delete(WebhookDeleteParams**kwargs) -> WebhookDeleteResponse
DELETE/accounts/{account_id}/stream/webhook
ModelsExpand Collapse
class WebhookGetResponse:
modified: Optional[datetime]

The date and time the webhook was last modified.

formatdate-time
notification_url: Optional[str]

The URL where webhooks will be sent.

formaturi
notification_url: Optional[str]

The URL where webhooks will be sent.

formaturi
secret: Optional[str]

The secret used to verify webhook signatures.

class WebhookUpdateResponse:
modified: Optional[datetime]

The date and time the webhook was last modified.

formatdate-time
notification_url: Optional[str]

The URL where webhooks will be sent.

formaturi
notification_url: Optional[str]

The URL where webhooks will be sent.

formaturi
secret: Optional[str]

The secret used to verify webhook signatures.

str