Skip to content

Instantly share code, notes, and snippets.

@jwaiswa7
Created January 24, 2023 16:11
Show Gist options
  • Save jwaiswa7/c15f1995f41384cd89c9250319da5d06 to your computer and use it in GitHub Desktop.
Save jwaiswa7/c15f1995f41384cd89c9250319da5d06 to your computer and use it in GitHub Desktop.
Hubspot integration
# Starting November 30, 2022, API keys will be sunset as an authentication method. Learn more about this change: https://developers.hubspot.com/changelog/upcoming-api-key-sunset and how to migrate an API key integration: https://developers.hubspot.com/docs/api/migrate-an-api-key-integration-to-a-private-app to use a private app instead.
require 'hubspot-api-client'
api_client = Hubspot::Client.new(access_token: 'YOUR_ACCESS_TOKEN')
properties = {
"city": "Cambridge",
"domain": "biglytics.net",
"industry": "Technology",
"name": "Biglytics",
"phone": "(877) 929-0687",
"state": "Massachusetts"
}
body = {properties: properties}
api_response = api_client.crm.companies.basic_api.create(body: body)
puts api_response
{
"id": "512",
"properties": {
"city": "Cambridge",
"createdate": "2019-10-30T03:30:17.883Z",
"domain": "biglytics.net",
"hs_lastmodifieddate": "2019-12-07T16:50:06.678Z",
"industry": "Technology",
"name": "Biglytics",
"phone": "(877) 929-0687",
"state": "Massachusetts"
},
"createdAt": "2019-10-30T03:30:17.883Z",
"updatedAt": "2019-12-07T16:50:06.678Z",
"archived": false
}
# Starting November 30, 2022, API keys will be sunset as an authentication method. Learn more about this change: https://developers.hubspot.com/changelog/upcoming-api-key-sunset and how to migrate an API key integration: https://developers.hubspot.com/docs/api/migrate-an-api-key-integration-to-a-private-app to use a private app instead.
require 'hubspot-api-client'
api_client = Hubspot::Client.new(access_token: 'YOUR_ACCESS_TOKEN')
properties = {
"company": "Biglytics",
"email": "[email protected]",
"firstname": "Bryan",
"lastname": "Cooper",
"phone": "(877) 929-0687",
"website": "biglytics.net"
}
body = {properties: properties}
api_response = api_client.crm.contacts.basic_api.create(body: body)
puts api_response
{
"id": "512",
"properties": {
"company": "Biglytics",
"createdate": "2019-10-30T03:30:17.883Z",
"email": "[email protected]",
"firstname": "Bryan",
"lastmodifieddate": "2019-12-07T16:50:06.678Z",
"lastname": "Cooper",
"phone": "(877) 929-0687",
"website": "biglytics.net"
},
"createdAt": "2019-10-30T03:30:17.883Z",
"updatedAt": "2019-12-07T16:50:06.678Z",
"archived": false
}
# Starting November 30, 2022, API keys will be sunset as an authentication method. Learn more about this change: https://developers.hubspot.com/changelog/upcoming-api-key-sunset and how to migrate an API key integration: https://developers.hubspot.com/docs/api/migrate-an-api-key-integration-to-a-private-app to use a private app instead.
require 'hubspot-api-client'
api_client = Hubspot::Client.new(access_token: 'YOUR_ACCESS_TOKEN')
api_response = api_client.crm.companies.basic_api.get_page(limit: 10, archived: false)
puts api_response
{
"results": [
{
"properties": {
"city": "Cambridge",
"createdate": "2019-10-30T03:30:17.883Z",
"domain": "biglytics.net",
"hs_lastmodifieddate": "2019-12-07T16:50:06.678Z",
"industry": "Technology",
"name": "Biglytics",
"phone": "(877) 929-0687",
"state": "Massachusetts"
}
}
],
"paging": {
"next": {
"after": "NTI1Cg%3D%3D",
"link": "?after=NTI1Cg%3D%3D"
}
}
}
{
"results": [
{
"properties": {
"company": "Biglytics",
"createdate": "2019-10-30T03:30:17.883Z",
"email": "[email protected]",
"firstname": "Bryan",
"lastmodifieddate": "2019-12-07T16:50:06.678Z",
"lastname": "Cooper",
"phone": "(877) 929-0687",
"website": "biglytics.net"
}
}
],
"paging": {
"next": {
"after": "NTI1Cg%3D%3D",
"link": "?after=NTI1Cg%3D%3D"
}
}
}
# Starting November 30, 2022, API keys will be sunset as an authentication method. Learn more about this change: https://developers.hubspot.com/changelog/upcoming-api-key-sunset and how to migrate an API key integration: https://developers.hubspot.com/docs/api/migrate-an-api-key-integration-to-a-private-app to use a private app instead.
require 'hubspot-api-client'
api_client = Hubspot::Client.new(access_token: 'YOUR_ACCESS_TOKEN')
api_response = api_client.crm.contacts.basic_api.get_page(limit: 10, archived: false)
puts api_response
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment