Open
Description
Describe the bug
When requesting the contacts list or a single contact by Id I do not get any value for CreatedAt and UpdatedAt
Repro Steps
`var api = new HubSpotApi("Access token here")
var contact = api.Contact.GetById<ContactHubSpotModel>(request.Id);
return new ContactsDetailsResponse
{
Company = contact.Company,
Email = contact.Email,
FirstName = contact.FirstName,
LastName = contact.LastName,
Id = contact.Id,
Phone = contact.Phone,
CreatedAt = contact.CreatedAt,
UpdatedAt = contact.UpdatedAt
};`
Expected behavior
Should return the Contact object including CreaetdAt and UpdatedAt
Metadata
Metadata
Assignees
Labels
No labels