Get a Contact
GET /contacts/{id}
— Use this method to retrieve the contact record with the specified internal ID.
Parameters
Path parameters
Path parameter |
Required / Optional |
Description |
Type |
---|---|---|---|
|
Required |
The internal ID of the contact. |
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 contact 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 contact 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/contacts/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": [
{
"jobTitle": "Head of Finance",
"externalId": "",
"mobile": "",
"state": "",
"email": "jdoe@example.com",
"city": "",
"fax": "",
"updated": "2020-07-30 03:04:58",
"id": 24,
"lastName": "Doe",
"firstName": "John",
"country": "",
"nickname": "J. Doe",
"isActive": true,
"phone": "",
"address2": "",
"created": "2019-05-18 09:51:46",
"zip": "",
"customerId": 68,
"notes": "",
"address1": "",
"title": ""
}
],
"message": "success"
}