Workspace Styleguide

This event is used to notify webhooks about changes directly related to Zeplin styleguides:

  • Styleguide is created or deleted
  • Styleguide's parent styleguide changes
  • Any of these properties change:
    • name
    • description
    • density scale (1x, 2x, etc.)
    • thumbnail image
    • status (archived or activated)
    • rem preferences (web styleguides only)"

Actions

  • "created"
  • "updated"
  • "deleted"
  • "activated"
  • "archived"
  • "styleguide_linked"
  • "styleguide_unlinked"

Resource

AttributeTypeDescription
idstringUnique id of the resource
typestring ("Styleguide")Type of the resource (one of the API models)
dataStyleguideObject representing the resource content

Example

{
  "event": "workspace.styleguide",
  "action": "created",
  "timestamp": 1572347818,
  "resource": {
    "type": "Styleguide",
    "data": {
      "id": "5db981be9df2b3e1bfa19ef2",
      "name": "Discovery 1",
      "description": "Global styleguide for all projects of Discovery 1.",
      "platform": "web",
      "thumbnail": "http://placekitten.com/200/300",
      "status": "active",
      "created": 1517184000,
      "updated": 1572347818,
      "number_of_members": 13,
      "number_of_components": 241,
      "number_of_connected_components": 195,
      "number_of_text_styles": 48,
      "number_of_colors": 37,
      "parent": {
        "id": "5db981b14ce405d079b376f0"
      }
    }
  },
  "actor": {
    "user": {
      "id": "5d9caaecb4a3fa9bc9718686",
      "email": "[email protected]",
      "username": "zozo",
      "emotar": "🍎",
      "avatar": "http://placekitten.com/200/300",
      "last_seen": 1616739240
    }
  }
}