User Webhook

Type: object

AttributeTypeDescription
idstringThe unique id of the webhook
urlstringThe URL of the webhook
namestring (Optional)The name of the webhook
statusWebhook Status-
url_healthWebhook Health-
creatednumberThe unix timestamp when the webhook was created
updatednumberThe unix timestamp when the webhook was updated
created_byUserThe user that creates the webhook
updated_byUserThe user that updates the webhook recently
zeplin_appZeplin Application (Optional)The app that uses and manages the webhook
eventsUser Webhook Event Type[]The events of the webhook
project_idsstring[]The project ids of the webhooks. Note: * wildcard denotes all project_ids
styleguide_idsstring[]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": [
    "*"
  ]
}