Update Multiple Projects
PUT /projects/bulk/{ids}
— Use this method to update projects with the specified internal IDs.
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
An object with key-value pairs for each project to be updated. For each project, the key is the project internal ID and the value is an object including valid key-value pairs for the fields to be updated. The project objects cannot include key-value pairs for read-only attributes. For information about the Project
object model, see Project object properties.
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. If your request includes multiple projects, both valid and invalid, the request will complete successfully for valid projects and return an error message for invalid projects — for example, If your request more than 100 projects, an error is returned — for example, |
Sample request
PUT /rest/v1/projects/bulk?return_object=1 HTTP/1.1
Host: company-id.app.netsuitesuiteprojectspro.com
Content-Type: application/json
Authorization: Bearer <OAuth2_access_token>
{
"367" : {
"name": "Updated project name",
"customerId": 108,
"filterSets": [{"id": 2}, {"id": 3}]
},
"673": {
"name": "Another updated project",
"customerId": 11,
"startDate": "2023-01-01"
}
}
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": "Multiple statuses returned"
"data": [{
"367": {
"message": "Bad data",
"errorFields": {
"customerId":[{
"type": "read-only-value",
"message": "Read-only value"
}]
}
},
"673": {"message": "success", "data": [{"id": 18}]}
}]
}