ByteChef LogoByteChef
Components

Zendesk Sell

Zendesk Sell is a sales CRM software that helps businesses manage leads, contacts, and deals efficiently.

Zendesk Sell is a sales CRM software that helps businesses manage leads, contacts, and deals efficiently.

Categories: CRM

Type: zendeskSell/v1


Connections

Version: 1

Bearer Token

Properties

NameLabelTypeDescriptionRequired
tokenTokenSTRINGtrue

Actions

Create Contact

Name: createContact

Creates new contact. A contact may represent a single individual or an organization.

Properties

NameLabelTypeDescriptionRequired
is_organizationIs Contact Represent an Organization?BOOLEAN
Options true, false
Is contact represent an organization or a single individual?true
nameNameSTRINGThe name of the organisation.false
first_nameFirst NameSTRINGThe first name of the person.false
last_nameLast NameSTRINGThe last name of the person.true
titleTitleSTRINGfalse
websiteWebsiteSTRINGfalse
emailEmailSTRINGfalse

Example JSON Structure

{
  "label" : "Create Contact",
  "name" : "createContact",
  "parameters" : {
    "is_organization" : false,
    "name" : "",
    "first_name" : "",
    "last_name" : "",
    "title" : "",
    "website" : "",
    "email" : ""
  },
  "type" : "zendeskSell/v1/createContact"
}

Output

Type: OBJECT

Properties

NameTypeDescription
dataOBJECT
Properties {STRING(id), BOOLEAN(is_organization), STRING(title), STRING(website), STRING(email)}
metaOBJECT
Properties {INTEGER(version), STRING(type)}

Output Example

{
  "data" : {
    "id" : "",
    "is_organization" : false,
    "title" : "",
    "website" : "",
    "email" : ""
  },
  "meta" : {
    "version" : 1,
    "type" : ""
  }
}

Create Task

Name: createTask

Creates new task.

Properties

NameLabelTypeDescriptionRequired
contentTask NameSTRINGtrue
due_dateDue DateDATEfalse

Example JSON Structure

{
  "label" : "Create Task",
  "name" : "createTask",
  "parameters" : {
    "content" : "",
    "due_date" : "2021-01-01"
  },
  "type" : "zendeskSell/v1/createTask"
}

Output

Type: OBJECT

Properties

NameTypeDescription
dataOBJECT
Properties {INTEGER(id), STRING(content), DATE(due_date)}
metaOBJECT
Properties {STRING(type)}

Output Example

{
  "data" : {
    "id" : 1,
    "content" : "",
    "due_date" : "2021-01-01"
  },
  "meta" : {
    "type" : ""
  }
}

On this page