Insightly
Insightly is a customer relationship management (CRM) software that helps businesses manage contacts, sales, projects, and tasks in one platform.
Categories: crm
Type: insightly/v1
Connections
Version: 1
Basic Auth
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
pod | Pod | STRING | TEXT | Your instances pod can be found under your API URL, e.g. https://api.{pod}.insightly.com/v3.1 | true |
username | API Key | STRING | TEXT | true |
Actions
Create Contact
Name: createContact
Creates new contact.
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
__item | Contact | OBJECT Properties{STRING(FIRST_NAME), STRING(LAST_NAME), STRING(EMAIL_ADDRESS), STRING(PHONE), STRING(TITLE)} | OBJECT_BUILDER | true |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
CONTACT_ID | INTEGER | INTEGER |
FIRST_NAME | STRING | TEXT |
LAST_NAME | STRING | TEXT |
EMAIL_ADDRESS | STRING | TEXT |
PHONE | STRING | TEXT |
TITLE | STRING | TEXT |
JSON Example
{ "label" : "Create Contact", "name" : "createContact", "parameters" : { "__item" : { "FIRST_NAME" : "", "LAST_NAME" : "", "EMAIL_ADDRESS" : "", "PHONE" : "", "TITLE" : "" } }, "type" : "insightly/v1/createContact"}
Create Organization
Name: createOrganization
Creates new organization.
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
__item | Organization | OBJECT Properties{STRING(ORGANISATION_NAME), STRING(PHONE), STRING(WEBSITE)} | OBJECT_BUILDER | true |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
ORGANISATION_ID | INTEGER | INTEGER |
ORGANISATION_NAME | STRING | TEXT |
PHONE | STRING | TEXT |
WEBSITE | STRING | TEXT |
JSON Example
{ "label" : "Create Organization", "name" : "createOrganization", "parameters" : { "__item" : { "ORGANISATION_NAME" : "", "PHONE" : "", "WEBSITE" : "" } }, "type" : "insightly/v1/createOrganization"}
Create Task
Name: createTask
Creates new task.
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
__item | Task | OBJECT Properties{STRING(TITLE), STRING(STATUS)} | OBJECT_BUILDER | true |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
TASK_ID | INTEGER | INTEGER |
TITLE | STRING | TEXT |
STATUS | STRING | TEXT |
JSON Example
{ "label" : "Create Task", "name" : "createTask", "parameters" : { "__item" : { "TITLE" : "", "STATUS" : "" } }, "type" : "insightly/v1/createTask"}