Skip to content

Contact Get Requests does not return 'CreatedAt' and 'UpdatedAt' #130

Open
@SteDuk

Description

@SteDuk

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions