Insert Multiple Projects
POST /projects/bulk/
— Use this method to create new projects.
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
objects to be created. Each 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.
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
POST /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>
{
"1": {
"attachments": [{"id": 6459}],
"budget": 500000,
"contactId": 537,
"currency": "EUR",
"customerId": 489,
"name": "Hardware deployment",
"userId": 174
},
"2": {
"attachments": [{"id": 6475}],
"budget": 300000,
"contactId": 537,
"currency": "EUR",
"customerId": 489,
"startDate": "2022-12-31",
"name": "Software deployment",
"userId": 174
}
}
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": [{
"1": {
"message": "Bad data",
"errorFields": {
"startDate":[{
"type": "required-field",
"message": "Required field Start date (DD/MM/YYYY)"
}]
}
},
"2": {"message": "success", "data": [{"id": 123}]}
}]
}