...
Operation details
...
Code Block |
---|
language | xml |
---|
title | createProject |
---|
|
<basecamp.createProject>
<name>{$ctx:name}</name>
<description>{$ctx:description}</description>
</basecamp.createProject> |
Properties
name:
The name of the project to be created.description:
The description of the project being created.
...
Code Block |
---|
language | xml |
---|
title | getProject |
---|
|
<basecamp.getProject>
<projectId>{$ctx:projectId}</projectId>
</basecamp.getProject> |
Properties
projectId:
Project ID associated with the project(You can find the projectId in basecamp URL, When click a created project in basecamp. The URL is structured like :https://3.basecamp.com/<accountId>/projects/<projectId>).
...
Code Block |
---|
language | xml |
---|
title | listProjects |
---|
|
<basecamp.listProjects>
<isArchived>{$ctx:isArchived}</isArchived>
</basecamp.listProjects> |
Properties
isArchived:
Whether to return the archived projects (default is false
).
...
The updateProject
operation allows updating a project's name and description.
Code Block |
---|
language | xml |
---|
title | updateProject |
---|
|
<basecamp.updateProject>
<projectId>{$ctx:projectId}</projectId>
<name>{$ctx:name}</name>
<description>{$ctx:description}</description>
</basecamp.updateProject> |
Properties
projectId:
Project ID associated with the project(You can find the projectId in basecamp URL, When click a created project in basecamp. The URL is structured like :https://3.basecamp.com/<accountId>/projects/<projectId>).name:
The name of the project to be created.description:
The description of the project being created.
...