We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5606aff commit 0533768Copy full SHA for 0533768
README.md
@@ -933,6 +933,7 @@ webhook = method.webhooks.create({
933
"type": "payment.update",
934
"url": "https://api.example.app/webhook",
935
"auth_token": "md7UqcTSmvXCBzPORDwOkE",
936
+ "hmac_secret": "bd7UscLSmvEXazTOQDwOKW",
937
});
938
```
939
method/resources/Webhook.py
@@ -84,6 +84,7 @@ class WebhookCreateOpts(TypedDict):
84
type: WebhookTypesLiterals
85
url: str
86
auth_token: Optional[str]
87
+ hmac_secret: Optional[str]
88
metadata: Optional[Dict[str, Any]]
89
expand_event: Optional[bool]
90
0 commit comments