Smartsheet.Api.Internal.ContactResourcesImpl.GetContact C# (CSharp) Method

GetContact() public method

Gets the specified Contact.

It mirrors To the following Smartsheet REST API method: POST GET /contacts/{contactId}

if any argument is null or empty string if there is any problem with the REST API request if there is any problem with the REST API authorization (access token) if the resource cannot be found if the REST API service is not available (possibly due To rate limiting) if there is any other error during the operation
public GetContact ( string contactId ) : Contact
contactId string the contactId
return Smartsheet.Api.Models.Contact
        public virtual Contact GetContact(string contactId)
        {
            return GetResource<Contact>("contacts/" + contactId, typeof(Contact));
        }