Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| url | string | |
| chainId | string | |
| status | object | |
| createdAt | number | |
| name | string | |
| description | string | |
| eventType | object | |
| metadata | object | |
| includeInternalTxs | boolean | Whether to include traces in the webhook payload. |
| includeLogs | boolean | Whether to include logs in the webhook payload. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/EVMAddressActivityResponse.json",
"title": "EVMAddressActivityResponse",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"url": {
"type": "string"
},
"chainId": {
"type": "string"
},
"status": {
"$ref": "#/components/schemas/WebhookStatusType"
},
"createdAt": {
"type": "number"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"eventType": {
"$ref": "#/components/schemas/AddressActivityEventType"
},
"metadata": {
"$ref": "#/components/schemas/AddressActivityMetadata"
},
"includeInternalTxs": {
"type": "boolean",
"description": "Whether to include traces in the webhook payload."
},
"includeLogs": {
"type": "boolean",
"description": "Whether to include logs in the webhook payload."
}
},
"required": [
"id",
"url",
"chainId",
"status",
"createdAt",
"name",
"description",
"eventType",
"metadata"
]
}