ByteChef LogoByteChef
Components

Zeplin

Zeplin is a collaboration tool that bridges the gap between designers and developers by providing a platform to share, organize, and translate design files into development.

Categories: Communication

Type: zeplin/v1


Connections

Version: 1

OAuth2 Authorization Code

Properties

NameLabelTypeDescriptionRequired
clientIdClient IdSTRINGtrue
clientSecretClient SecretSTRINGtrue

Actions

Update Project

Name: updateProject

Updates an existing project.

Properties

NameLabelTypeDescriptionRequired
project_idProject IDSTRINGProject to update.true
nameNameSTRINGNew name for the project.true
descriptionDescriptionSTRINGNew description for the project.false

Example JSON Structure

{
  "label" : "Update Project",
  "name" : "updateProject",
  "parameters" : {
    "project_id" : "",
    "name" : "",
    "description" : ""
  },
  "type" : "zeplin/v1/updateProject"
}

Output

This action does not produce any output.

Triggers

Project Note

Name: projectNote

Triggers when new note is created, deleted or updated in specified project.

Type: DYNAMIC_WEBHOOK

Properties

NameLabelTypeDescriptionRequired
project_idProject IDSTRINGID of the project you want to monitor.true

Output

Type: OBJECT

Properties

NameTypeDescription
contextOBJECT
Properties {STRING(id), STRING(type), {STRING(id), STRING(status), [{STRING(id), {STRING(id), STRING(email), STRING(username)}(author), STRING(content)}](comments)}(data)}
actionSTRING
eventSTRING

JSON Example

{
  "label" : "Project Note",
  "name" : "projectNote",
  "parameters" : {
    "project_id" : ""
  },
  "type" : "zeplin/v1/projectNote"
}

What to do if your action is not listed here?

If this component doesn't have the action you need, you can use Custom Action to create your own. Custom Actions empower you to define HTTP requests tailored to your specific requirements, allowing for greater flexibility in integrating with external services or APIs.

To create a Custom Action, simply specify the desired HTTP method, path, and any necessary parameters. This way, you can extend the functionality of your component beyond the predefined actions, ensuring that you can meet all your integration needs effectively.