Get a Project
GET /projects/{id}
— Use this method to retrieve the project with the specified internal ID.
Parameters
Path parameters
Path parameter |
Required / Optional |
Description |
Type |
---|---|---|---|
|
Required |
The internal ID of the project. |
integer |
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 |
string |
|
Optional |
A comma-separated list of attributes to include in the response. If not specified, the response includes all attributes for the project task returned. Response Data Modifiers. |
string |
|
Optional |
The internal ID of the filter set to be applied.
|
integer |
Response definitions
A successful request returns a JSON object with the following properties:
Property |
Description |
---|---|
|
An array containing the project task requested. 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 — for example,
Note:
The project task record with the internal ID |
Sample request
GET /rest/v1/projects/2438?fields=attachments,budget,contactId,created,currency,customerId,finishDate,id,name,userId HTTP/1.1
Host: company-id.app.netsuitesuiteprojectspro.com
Authorization: Bearer <OAuth2_access_token>
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
{
"data": [
{
"attachments": [{"id": 6459} ],
"budget": 500000,
"contactId": 537,
"created": "2020-10-22 07:08:36",
"currency": "EUR",
"customerId": 489,
"finishDate": "2022-12-31",
"id": 2438,
"name": "Hardware deployment",
"userId": 174
}
],
"message": "success"
"meta": {
"relationships": [
{
"attachments": {
"data": { "type": "attachments", "id": 6459 }
},
"userId": {
"data": { "type": "userDisplayName", "id": 174 }
}
},
],
"rowsPerPage": 100,
"totalPages": 1,
"totalRows": 1,
"links": [
{
"rel": "self",
"href": "https://company-id.app.netsuitesuiteprojectspro.com/rest/v1/projects/2438?fields=attachments,budget,contactId,created,currency,customerId,finishDate,id,name,userId"
}
]
}
}