Get a Time Entry
GET /time-entries/{id}
— Use this method to retrieve the time entry record with the specified internal ID.
Parameters
Path parameters
Path parameter |
Required / Optional |
Description |
Type |
---|---|---|---|
|
Required |
The internal ID of the time entry. |
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
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 time entry 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 time entry object 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, |
Sample request
GET /rest/v1/time-entries/24 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": [
{
"hour": 8,
"categoryId": 2,
"timeTypeId": 1,
"date": "2012-03-05",
"endTime": "00:00:00",
"timesheetRowId": 0,
"category4Id": 0,
"decimalHours": 0,
"projectTaskId": 502,
"updated": "2013-11-16 08:49:03",
"startTime": "00:00:00",
"id": 1,
"slipId": 0,
"accountDate": "0000-00-00",
"autoBillCode": "",
"jobCodeId": 1,
"timesheetId": 1,
"description": "",
"minute": 0,
"customerId": 13,
"costCenterId": 1,
"scheduleRequestItemId": 0,
"projectTaskTypeId": 1,
"thinClientId": 0,
"projectId": 31,
"category3Id": 0,
"category5Id": 0,
"payrollTypeId": 0,
"userId": 2,
"category2Id": 0,
"created": "2013-11-01 14:46:07",
"category1Id": 0,
"notes": "",
"exported": "0000-00-00 00:00:00"
}
],
"meta": {
"relationships": [
{
"userId": {
"data": {
"id": 2,
"type": "userDisplayName"
}
}
}
]
},
"message": "success"
}