public interface ContactResources
| Modifier and Type | Method and Description |
|---|---|
Contact |
getContact(String contactId)
Gets the specified Contact.
|
PagedResult<Contact> |
listContacts(PaginationParameters parameters)
Gets a list of the user’s Smartsheet Contacts.
|
Contact getContact(String contactId) throws SmartsheetException
Gets the specified Contact.
It mirrors to the following Smartsheet REST API method:
GET /contacts/{contactId}
contactId - the ID of the contactSmartsheetException - if there is any other error during the operationPagedResult<Contact> listContacts(PaginationParameters parameters) throws SmartsheetException
Gets a list of the user’s Smartsheet Contacts.
It mirrors to the following Smartsheet REST API method:
GET /contacts
parameters - the pagination parametersSmartsheetException - if there is any other error during the operationCopyright © 2014–2017 Smartsheet. All rights reserved.