Create a Project from Template
POST /projects/from-template/
— Use this method to create a new project from another project or from a project template.
Parameters
Path parameters
None
Query string parameter
Path parameter |
Required / Optional |
Description |
Type |
---|---|---|---|
|
Optional |
A comma-separated list of attributes available for expansion. The comma-separated list may include spaces (or
Note:
The |
string |
|
Optional |
A comma-separated list of attributes to include in the response. If not specified, the response includes all attributes for the project returned. |
string |
|
Optional |
The internal ID of the filter set to be applied.
|
integer |
|
Optional |
If set to any value other than |
Boolean |
Request body
The Project
object to be created. The object must include valid key-value pairs for all required attributes and cannot include key-value pairs for read-only attributes. For information about the Project
object model, see Project object properties.
The following properties are specific to the POST /projects/from-template/
method. The internal ID of the template project (templateProjectId
) must be included.
Property |
Description |
Type |
Optional / Required |
Query allowed |
---|---|---|---|---|
|
A 1/0 field indicating whether to copy the project approvers associated with the project or project template specified in |
Boolean |
Optional |
— |
|
A 1/0 field indicating whether to copy the bookings associated with the project or project template specified in |
Boolean |
Optional |
— |
|
A 1/0 field indicating whether to copy the customers and projects to exclude from denominator when calculating user allocation % from the project or project template specified in |
Boolean |
— |
— |
|
A 1/0 field indicating whether to copy the custom field values from the project or project template specified in |
Boolean |
Optional |
— |
|
A 1/0 field indicating whether to copy the dashboard settings from the project or project template specified in |
Boolean |
Optional |
— |
|
A 1/0 field indicating whether to copy the expense policy associated with the project or project template specified in |
Boolean |
Optional |
— |
|
A 1/0 field indicating whether to copy the invoice layout settings associated with the project or project template specified in |
Boolean |
Optional |
— |
|
A 1/0 field indicating whether to copy the issues associated with the project or project template specified in |
Boolean |
Optional |
— |
|
A 1/0 field indicating whether to copy the loaded costs from the project or project template specified in |
Boolean |
Optional |
— |
|
A 1/0 field indicating whether to copy the notification settings from the project or project template specified in |
Boolean |
Optional |
— |
|
A 1/0 field indicating whether to copy the project assignment profiles associated with the project or project template specified in |
Boolean |
Optional |
— |
|
A 1/0 field indicating whether to copy the automated project autobilling settings from the project or project template specified in |
Boolean |
Optional |
— |
|
A 1/0 field indicating whether to copy the project billing rules associated with the project or project template specified in |
Boolean |
Optional |
— |
|
A 1/0 field indicating whether to copy the project budget groups associated with the project or project template specified in |
Boolean |
Optional |
— |
|
A 1/0 field indicating whether to copy the project pricing associated with the project or project template specified in |
Boolean |
Optional |
— |
|
A 1/0 field indicating whether to copy the project revenue recognition autorun settings associated with the project or project template specified in |
Boolean |
Optional |
— |
|
A 1/0 field indicating whether to copy the project revenue recognition rules associated with the project or project template specified in |
Boolean |
Optional |
— |
|
The internal ID of the project or project template to be copied. Used only with POST |
integer |
Required |
— |
Response definitions
A successful request returns a JSON object with the following properties:
Property |
Description |
---|---|
|
An array containing one of the following:
See Returned Data. |
|
An array of expanded objects, if the |
|
An object containing information about objects referenced by internal ID in the |
|
A string containing a brief message about the status of your request — for example, |
A failed request returns a JSON object with the following properties:
Property |
Description |
---|---|
|
A string containing a brief message about the status of your request. |
Sample request
POST /rest/v1/projects/from-template?return_object=1 HTTP/1.1
Host: company-id.app.netsuitesuiteprojectspro.com
Content-Type: application/json
Authorization: Bearer <OAuth2_access_token>
{
"name": "New project copied from template",
"customerId": 1,
"hierarchyNodes": [{"id": 72}],
"filterSets": [{"id": 2}, {"id": 3}],
"templateProjectId": 7,
"startDate": "2022-12-31",
"copyProjectBillingRules": 1,
"copyProjectBillingAutoSetting": 1,
"copyProjectPricing": true,
"copyCustomFields": true,
"copyLoadedCost": true,
"copyApprovers": true,
"copyIssues": true,
"copyNotificationSettings": true,
"copyDashboardSettings": true,
"copyInvoiceLayoutSettings": true,
"copyBookings": true,
"copyProjectBudgetGroups": true,
"copyExpensePolicy": true,
"copyProjectAssignmentProfiles": true,
}
In the example, <OAuth2_access_token>
is the OAuth 2.0 access token obtained for the client application connecting to SuiteProjects Pro. See Authentication.
Sample response
{
"message": "success",
"data": [{
"id": 123
}]
}