Skip to content

VTiger

VTiger is a comprehensive customer relationship management (CRM) platform that offers sales, marketing, and support solutions to streamline business.

Categories: crm

Type: vtiger/v1


Connections

Version: 1

Basic Auth

Properties

NameLabelTypeControl TypeDescriptionRequired
usernameUsernameSTRINGTEXTEnter your username/email.true
passwordAccess KeySTRINGTEXTtrue
instance_urlVTiger Instance URLSTRINGTEXTFor the instance URL, add the url without the endpoint.true

Actions

Create Contact

Name: createContact

Creates a new contact.

Properties

NameLabelTypeControl TypeDescriptionRequired
firstnameFirst NameSTRINGTEXTFirst name of the contact.true
lastnameLast NameSTRINGTEXTLast name of the contact.true
emailEmailSTRINGTEXTEmail address of the contact.true

Output

Type: OBJECT

Properties

NameTypeControl Type
resultOBJECT
Properties {STRING(firstname), STRING(lastname), STRING(email), STRING(phone), STRING(assigned_user_id), STRING(id)}
OBJECT_BUILDER

JSON Example

{
"label" : "Create Contact",
"name" : "createContact",
"parameters" : {
"firstname" : "",
"lastname" : "",
"email" : ""
},
"type" : "vtiger/v1/createContact"
}

Create Product

Name: createProduct

Creates a new product for your CRM.

Properties

NameLabelTypeControl TypeDescriptionRequired
productnameProduct NameSTRINGTEXTName of the product.true
product_typeProduct TypeSTRING
Options Solo, Fixed Bundle
SELECTType of the product.true

Output

Type: OBJECT

Properties

NameTypeControl Type
resultsOBJECT
Properties {STRING(productname), STRING(product_type), STRING(assigned_user_id), STRING(id)}
OBJECT_BUILDER

JSON Example

{
"label" : "Create Product",
"name" : "createProduct",
"parameters" : {
"productname" : "",
"product_type" : ""
},
"type" : "vtiger/v1/createProduct"
}

Get Me

Name: getMe

Get more information about yourself.

Output

Type: OBJECT

Properties

NameTypeControl Type
resultOBJECT
Properties {STRING(id), STRING(user_name), STRING(user_type), STRING(email), STRING(phone_home), STRING(phone_work), STRING(phone_mobile), STRING(userlable), STRING(address_street), STRING(address_city), STRING(address_state), STRING(address_country), STRING(roleid), STRING(language), STRING(is_admin), STRING(is_owner), STRING(status)}
OBJECT_BUILDER

JSON Example

{
"label" : "Get Me",
"name" : "getMe",
"type" : "vtiger/v1/getMe"
}