You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I'm looking to set up some automations for bulk upserting contacts. I need to get contacts from multiple data sources, map them to my contacts and upsert them to hubspot. Hubspot currently supports this in their api
Describe the solution you'd like
I was hoping for something like this
`req := []*hubspot.Contact{
{
Email: hubspot.NewString("[email protected]"),
FirstName: hubspot.NewString("John"),
LastName: hubspot.NewString("Doe"),
},
{
Email: hubspot.NewString("[email protected]"),
FirstName: hubspot.NewString("Jane"),
LastName: hubspot.NewString("Smith"),
},
}
Describe alternatives you've considered
I'm currently exploring alternatives. Based on the current implementation of this package I think its possible to implement this in my code by defining a custom contact and creating my own implementation of upsert.
Additional context
I was wondering if this package is still being maintained. I could try implementing on my own and raising a pr. I need this functionality for a project im working on. The project requirements will grow in the coming months and I can make future contributions as I find gaps.
The text was updated successfully, but these errors were encountered:
The examples you suggested looks good to me.
This library is subject to maintenance and we can work on its implementation, but a pull request would be very helpful.
I have added an enhancement label as a feature request.
We will consider whether to include it as an implementation in the next release, etc.
Just incase anyone runs into this, I was able to get something working, I need to do a bit more testing on my end but when I'm happy with it I can send over a pr
Is your feature request related to a problem? Please describe.
I'm looking to set up some automations for bulk upserting contacts. I need to get contacts from multiple data sources, map them to my contacts and upsert them to hubspot. Hubspot currently supports this in their api
Describe the solution you'd like
I was hoping for something like this
`req := []*hubspot.Contact{
{
Email: hubspot.NewString("[email protected]"),
FirstName: hubspot.NewString("John"),
LastName: hubspot.NewString("Doe"),
},
{
Email: hubspot.NewString("[email protected]"),
FirstName: hubspot.NewString("Jane"),
LastName: hubspot.NewString("Smith"),
},
}
Describe alternatives you've considered
I'm currently exploring alternatives. Based on the current implementation of this package I think its possible to implement this in my code by defining a custom contact and creating my own implementation of upsert.
Additional context
I was wondering if this package is still being maintained. I could try implementing on my own and raising a pr. I need this functionality for a project im working on. The project requirements will grow in the coming months and I can make future contributions as I find gaps.
The text was updated successfully, but these errors were encountered: