Type: object
Attribute | Type | Description |
---|---|---|
id | string | The unique id of the webhook |
url | string | The URL of the webhook |
name | string (Optional) | The name of the webhook |
status | Webhook Status | - |
url_health | Webhook Health | - |
created | number | The unix timestamp when the webhook was created |
updated | number | The unix timestamp when the webhook was updated |
created_by | User | The user that creates the webhook |
updated_by | User | The user that updates the webhook recently |
zeplin_app | Zeplin Application (Optional) | The app that uses and manages the webhook |
events | User Webhook Event Type[] | The events of the webhook |
project_ids | string[] | The project ids of the webhooks. Note: * wildcard denotes all project_ids |
styleguide_ids | string[] | The styleguide ids of the webhooks. Note: * wildcard denotes all styleguide_ids |
Example
{
"id": "5dbad85a76ea51c1f35b6f69",
"name": "my lovely hook",
"status": "active",
"created": 1586852836,
"created_by": {
"id": "5d9caaecb4a3fa9bc9718686",
"email": "[email protected]."
},
"updated": 1586852836,
"updated_by": {
"id": "5d9caaecb4a3fa9bc9718686",
"email": "[email protected]"
},
"url": "https://www.example.com/base",
"url_health": "healthy",
"events": [
"*"
],
"project_ids": [
"*"
],
"styleguide_ids": [
"*"
]
}