Get a Job Code
GET /job-codes/{id}
— Use this method to retrieve the job code record with the specified internal ID.
Parameters
Path parameters
Path parameter |
Required / Optional |
Description |
Type |
---|---|---|---|
|
Required |
The internal ID of the job code. |
integer |
Query string parameter
Path parameter |
Required / Optional |
Description |
Type |
---|---|---|---|
|
Optional |
A comma-separated list of attributes to include in the response. If not specified, the response includes all attributes for the job code returned. Response Data Modifiers. |
|
|
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 job code object requested. See Returned Data. |
|
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/job-codes/8 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": [
{
"loadedCost": 130,
"externalId": "45",
"isActive": true,
"genericResourceId": 12,
"name": "Senior Consultant",
"accountingCode": "",
"currency": "USD",
"created": "2019-02-20 13:42:15",
"notes": "",
"updated": "2020-09-30 03:04:57",
"id": 8
}
],
"message": "success"
}