Skip to content

Commit 67cd0e9

Browse files
authored
Adding GetByUserToken to Contacts API interface
1 parent 78dbaa2 commit 67cd0e9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

HubSpot.NET/Core/Interfaces/IHubSpotContactApi.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ public interface IHubSpotContactApi
1111
void Batch<T>(List<T> entities) where T : ContactHubSpotModel, new();
1212
T GetByEmail<T>(string email) where T : ContactHubSpotModel, new();
1313
T GetById<T>(long contactId) where T : ContactHubSpotModel, new();
14+
T GetByUserToken<T>(string userToken) where T : ContactHubSpotModel, new();
1415
ContactListHubSpotModel<T> List<T>(ListRequestOptions opts = null) where T : ContactHubSpotModel, new();
1516
void Update<T>(T contact) where T : ContactHubSpotModel, new();
1617
ContactListHubSpotModel<T> RecentlyCreated<T>(ListRecentRequestOptions opts = null) where T : ContactHubSpotModel, new();
1718
ContactListHubSpotModel<T> RecentlyUpdated<T>(ListRecentRequestOptions opts = null) where T : ContactHubSpotModel, new();
1819
}
19-
}
20+
}

0 commit comments

Comments
 (0)