Components
Zendesk Sell
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
| Name | Label | Type | Description | Required |
|---|---|---|---|---|
| token | Token | STRING | true |
Actions
Create Contact
Name: createContact
Creates new contact. A contact may represent a single individual or an organization.
Properties
| Name | Label | Type | Description | Required |
|---|---|---|---|---|
| is_organization | Is Contact Represent an Organization? | BOOLEAN Optionstrue, false | Is contact represent an organization or a single individual? | true |
| name | Name | STRING | The name of the organisation. | false |
| first_name | First Name | STRING | The first name of the person. | false |
| last_name | Last Name | STRING | The last name of the person. | true |
| title | Title | STRING | false | |
| website | Website | STRING | false | |
| STRING | false |
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
| Name | Type | Description |
|---|---|---|
| data | OBJECT Properties{STRING(id), BOOLEAN(is_organization), STRING(title), STRING(website), STRING(email)} | |
| meta | OBJECT 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
| Name | Label | Type | Description | Required |
|---|---|---|---|---|
| content | Task Name | STRING | true | |
| due_date | Due Date | DATE | false |
Example JSON Structure
{
"label" : "Create Task",
"name" : "createTask",
"parameters" : {
"content" : "",
"due_date" : "2021-01-01"
},
"type" : "zendeskSell/v1/createTask"
}Output
Type: OBJECT
Properties
| Name | Type | Description |
|---|---|---|
| data | OBJECT Properties{INTEGER(id), STRING(content), DATE(due_date)} | |
| meta | OBJECT Properties{STRING(type)} |
Output Example
{
"data" : {
"id" : 1,
"content" : "",
"due_date" : "2021-01-01"
},
"meta" : {
"type" : ""
}
}