Teamwork
Teamwork is a project management software that helps teams collaborate, organize tasks, and track progress efficiently.
Categories: crm, project-management
Type: teamwork/v1
Connections
Version: 1
Basic Auth
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
siteName | Your site name | STRING | TEXT | e.g. https://{yourSiteName}.teamwork.com | true |
username | API Key | STRING | TEXT | true |
Actions
Create Company
Name: createCompany
Creates a new company.
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
__item | Company | OBJECT Properties{{STRING(name), STRING(emailOne), STRING(phone), STRING(website)}(company)} | OBJECT_BUILDER | null |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
body | OBJECT Properties{STRING(name), STRING(emailOne), STRING(phone), STRING(website)} | OBJECT_BUILDER |
JSON Example
{ "label" : "Create Company", "name" : "createCompany", "parameters" : { "__item" : { "company" : { "name" : "", "emailOne" : "", "phone" : "", "website" : "" } } }, "type" : "teamwork/v1/createCompany"}
Create Task
Name: createTask
Create a new task
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
tasklistId | Task List ID | INTEGER | SELECT | Task list where new task is added | true |
__item | Task | OBJECT Properties{{STRING(name), STRING(description), DATE(dueAt)}(task)} | OBJECT_BUILDER | null |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
body | OBJECT Properties{STRING(name), STRING(description), STRING(dueAt)} | OBJECT_BUILDER |
JSON Example
{ "label" : "Create Task", "name" : "createTask", "parameters" : { "tasklistId" : 1, "__item" : { "task" : { "name" : "", "description" : "", "dueAt" : "2021-01-01" } } }, "type" : "teamwork/v1/createTask"}