Skip to content

Commit

Permalink
fix: hubspot increasing batch limit from 10 to 100
Browse files Browse the repository at this point in the history
  • Loading branch information
anantjain45823 committed Jan 30, 2024
1 parent 05172b4 commit 8075b7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v0/destinations/hs/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const IDENTIFY_CRM_UPDATE_CONTACT = `${BASE_ENDPOINT}/crm/v3/objects/contacts/:c
const BATCH_IDENTIFY_CRM_CREATE_NEW_CONTACT = `${BASE_ENDPOINT}/crm/v3/objects/contacts/batch/create`;
const BATCH_IDENTIFY_CRM_UPDATE_CONTACT = `${BASE_ENDPOINT}/crm/v3/objects/contacts/batch/update`;
// Ref - https://developers.hubspot.com/docs/api/crm/contacts#endpoint?spec=GET-/crm/v3/objects/contacts
const MAX_BATCH_SIZE_CRM_CONTACT = 10;
const MAX_BATCH_SIZE_CRM_CONTACT = 100;

// Track
// Ref - https://developers.hubspot.com/docs/api/analytics/events
Expand Down

0 comments on commit 8075b7c

Please sign in to comment.