Wrike · Schema
Webhook
Work ManagementProject ManagementCollaborationProductivityWorkflow AutomationTask Management
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| accountId | string | |
| hookUrl | string | |
| events | array | |
| spaceId | string | |
| folderId | string | |
| externalRequestId | string | |
| status | string | |
| isPermanent | boolean | |
| secretKey | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Webhook",
"title": "Webhook",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"accountId": {
"type": "string"
},
"hookUrl": {
"type": "string",
"format": "uri"
},
"events": {
"type": "array",
"items": {
"type": "string"
}
},
"spaceId": {
"type": "string"
},
"folderId": {
"type": "string"
},
"externalRequestId": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"enabled",
"suspended",
"disabled"
]
},
"isPermanent": {
"type": "boolean"
},
"secretKey": {
"type": "string"
}
}
}