Contacts
Contact records contain information about individuals working for, or associated with customers.
Available methods
-
POST
/contacts/
— Insert a Contact -
GET
/contacts/
— Get the List of Contacts -
GET
/contacts/{id}
— Get a Contact -
PUT
/contacts/{id}
— Update a Contact -
DELETE
/contacts/{id}
— Delete a Contact -
OPTIONS
/contacts/
— Discover Available Methods and Fetch the Endpoint Reference for Contacts
Contact object properties
A contact is a person working for, or associated with a customer.
The Contact
object has the following properties:
Property |
Description |
Type |
Read-only |
Query allowed |
Sorting allowed |
---|---|---|---|---|---|
|
Optional accounting code that can be used for integration with external accounting systems. |
string |
— |
Yes |
— |
|
First line of the contact's address. |
string |
— |
— |
— |
|
Second line of the contact's address. |
string |
— |
— |
— |
|
Third line of the contact's address. |
string |
— |
— |
— |
|
Fourth line of the contact's address. |
string |
— |
— |
— |
|
A 1/0 field indicating if the contact can be used for billing. |
Boolean |
— |
Yes |
— |
|
A 1/0 field indicating if the contact an be used for selling. |
Boolean |
— |
Yes |
— |
|
A 1/0 field indicating if the contact can be used for shipping. |
Boolean |
— |
Yes |
— |
|
The contact's city. |
string |
— |
— |
— |
|
The contact's country. |
string |
— |
— |
— |
|
The date the contact record was created. |
string($date-time) |
Yes |
Yes |
— |
|
[REQUIRED] The internal ID of the associated customer. |
integer($int64) |
— |
Yes |
Yes |
|
The contact's Email address. |
string |
— |
Yes |
— |
|
The unique external ID of the contact, if the record was imported from an external system. |
string |
— |
Yes |
Yes |
|
The contact's fax number. |
string |
— |
Yes |
— |
|
The contact's first name. |
string |
— |
Yes |
— |
|
The unique internal identifier of the contact. |
integer($int64) |
Yes |
Yes |
Yes |
|
A 1/0 field indicating if the contact is active. |
Boolean |
— |
Yes |
Yes |
|
The contact's job title. |
string |
— |
Yes |
— |
|
[REQUIRED] The contact's last name. |
string |
— |
Yes |
— |
|
The contact's mobile phone number. |
string |
— |
Yes |
— |
|
The nickname used to identify the contact. |
string |
— |
Yes |
— |
|
Notes about the contact. |
string |
— |
Yes |
— |
|
The contact's phone number. |
string |
— |
Yes |
— |
|
The contact's State or Region. |
string |
— |
— |
— |
|
The contact's title. |
string |
— |
Yes |
— |
|
The date the contact record was last updated or modified. |
string($date-time) |
Yes |
Yes |
— |
|
The contact's ZIP code or postal code. |
string |
— |
— |
— |
Access to certain object types and object attributes depend on the business logic configured for your SuiteProjects Pro account. It may vary depending on the role and access privileges associated with the access token and with the user who authorized the application.
Required and read-only attributes also depend on the business logic configured for each specific SuiteProjects Pro account. Some fields such as id
, created
, and updated
are system-generated and always read-only.