Skip to content

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

NameLabelTypeControl TypeDescriptionRequired
siteNameYour site nameSTRINGTEXTe.g. https://{yourSiteName}.teamwork.comtrue
usernameAPI KeySTRINGTEXTtrue

Actions

Create Company

Name: createCompany

Creates a new company.

Properties

NameLabelTypeControl TypeDescriptionRequired
__itemCompanyOBJECT
Properties {{STRING(name), STRING(emailOne), STRING(phone), STRING(website)}(company)}
OBJECT_BUILDERnull

Output

Type: OBJECT

Properties

NameTypeControl Type
bodyOBJECT
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

NameLabelTypeControl TypeDescriptionRequired
tasklistIdTask List IDINTEGERSELECTTask list where new task is addedtrue
__itemTaskOBJECT
Properties {{STRING(name), STRING(description), DATE(dueAt)}(task)}
OBJECT_BUILDERnull

Output

Type: OBJECT

Properties

NameTypeControl Type
bodyOBJECT
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"
}