Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| description | string | |
| url | string | |
| status | object | |
| includeInternalTxs | boolean | Whether to include traces in the webhook payload. Traces are only available for C-Chain on chainId 43113 and 43114. |
| includeLogs | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/UpdateWebhookRequest.json",
"title": "UpdateWebhookRequest",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"url": {
"type": "string"
},
"status": {
"$ref": "#/components/schemas/WebhookStatusType"
},
"includeInternalTxs": {
"type": "boolean",
"description": "Whether to include traces in the webhook payload. Traces are only available for C-Chain on chainId 43113 and 43114."
},
"includeLogs": {
"type": "boolean"
}
}
}