Understanding the CRM

The foundation of your HubSpot account is a database of your business relationships and processes, called the CRM (Customer Relationship Management). To manage this data, HubSpot accounts include objects, which represent types of relationships or processes. All HubSpot accounts include four standard objects: contacts, companies, deals, and tickets. Depending on your HubSpot subscription, there are additional objects, such as products and custom objects.

Records are individual instances of an object (e.g., John Smith is a contact). For each record, you can store information in properties, track interactions, and create reports. You can also make associations between records to understand the relationships between them. Below, learn about CRM objects, records, properties, and additional functionalities.

To learn more about managing your CRM database from within HubSpot, check out HubSpot's Knowledge Base.

Objects

The CRM API provides access to objects, records, and activities. The list below explains the objects available in HubSpot.

The following objects each have an index page within HubSpot, and can all be associated with each other:

The following objects do not have index pages within HubSpot, but can be associated with certain other objects: 

Object relationships

Within HubSpot, to show how objects are related to one another, you can associate records. For example, you can associate multiple contacts with a company, and then associate the company and relevant contacts with a deal. All HubSpot accounts have contacts, companies, deals, tickets, and activities, which can be associated with one another, shown in the model below. If you have access to a HubSpot account, you can review your account's unique object relationships by navigating to the data model tool.data-model-overview-updated

Depending on your subscription, you can describe the specific relationship between records using association labels, and your account may have additional custom objects, which can be associated with the other standard objects. Other objects, such as products and line items, can only be associated with certain objects. Learn more about these additional objects and their associations.

Learn more about object relationships and managing associations using the associations endpoints.

Activities and attachments

Engagements, also called activities, store data from interactions with records. For example, if you call a prospect, you can log a call to the contact record, and also associate the call with their associated company. Possible activities include notes, tasks, meetings, emails, calls, postal mail, SMS, LinkedIn messages, and WhatsApp messaged.

You can also store attachments on records to keep track of relevant files. These are often related to engagements.

Learn more about the engagements APIs.

Data syncing

Syncing engagement data is not required to sync object data. Because an object can be associated with numerous engagements, it’s also important to keep API limits in mind before syncing.

However, you may want to sync engagements rather than properties when an integration is a precursor to a full migration. In this case, syncing engagements across both systems will ensure all users have the data they need during the transition. For example, when a business development team working in HubSpot is handing deals to an inside sales rep working in another CRM, you should sync engagements so both teams have the context they need to close a sale.

Object type IDs

When using certain APIs, you'll need to use the objectTypeId field. Below are the ID values for each object or activity:

  • Contacts0-1
  • Companies:  0-2
  • Deals0-3
  • Tickets: 0-5
  • Custom objects: to find the ID value for your custom object, make a GET request to /crm/v3/schemas. The value will look similar to 2-3453932
  • Calls: 0-48
  • Emails: 0-49
  • Meetings: 0-47
  • Notes0-4
  • Tasks: 0-27
  • Products: 0-7
  • Invoices: 0-52
  • Line items: 0-8
  • Payments: 0-101
  • Quotes: 0-14
  • Subscriptions: 0-69
  • Communications (SMS, LinkedIn, WhatsApp messages): 0-18
  • Postal mail: 0-116
  • Marketing events: 0-54
  • Feedback submissions: 0-19

While you can always use the numerical ID value, in some cases, you can also use the object's name for contacts, companies, deals, tickets, or notes. For example:

  • When starting an import with the imports API, the columnObjectTypeId specifies which object the data in your file belongs to. To import data for contacts, your value for columnObjectTypeId could be contact or 0-1.
  • When using the associations API, the fromObjectType and toObjectType values specify the objects and the direction of the association. To view association types for contacts to companies, your GET request URL could be crm/v4/associations/contact/company/labels or crm/v4/associations/0-1/0-2/labels.

Batch actions

Each object provides batch endpoints that let you create, read, update, and archive multiple object records in a single request. Batch endpoints have a limit of 100 records per call.

Properties

Information about records are stored in fields called properties, which are then organized into groups. In addition to each object’s default properties, you can store custom data by creating custom properties

Default properties

CRM objects are defined by a primary type and a set of properties. Each type has a unique set of standard properties, represented by a map of name-value pairs. Learn more about default properties for different objects:

Custom properties

Create custom properties to store specialized information for an object. Custom properties can be managed through the CRM object properties endpoints.

Record owners

You can assign HubSpot users as owners of records. Any HubSpot user with access to an object can be assigned as an owner, and multiple owners can be assigned to an object by creating a custom property for this purpose. Owners can only be created in HubSpot, but you can use the owners endpoint to get their identifying details, including IDs and email addresses. This data can then be assigned to CRM records in HubSpot or via property change API calls. 

Unique identifiers and record IDs

A unique identifier is a value that differentiates one record in a database from another, even if they have otherwise identical information. For example, a database for a bank might have records for two people named John Smith.  To avoid accidentally sending money to the wrong John Smith, each record is given a number as their unique ID.

You'll use these unique identifiers to send your data to the correct records, and manage deduplication. Learn more about the ways that HubSpot handles deduplication in the Knowledge Base.

HubSpot’s default unique identifiers

When a record is created in HubSpot, a unique ID is automatically generated and should be treated as a string. These IDs are unique only within the object type, so there can be both a contact and company with the same ID. 

For contacts and companies, there are additional unique identifiers, including a contact's email and a company's domain name.

Creating your own unique identifiers

In many cases, you can use the record ID (hs_object_id) generated by HubSpot to drive the logic of your integration. However, your data may require other properties with unique values, or there may be times when record ID either cannot be used or complicates the integration logic of your app. In these cases, you can create a custom unique identifier property via the Properties API.

Once you've created a custom unique ID property, you can use it in API calls to to identify and update specific records in the same way you can use hs_object_id, email for contacts, or domain for companies. For example, to retrieve a deal based on its value for a custom unique ID property, your request URL could look like: GET https://api.hubapi.com/crm/v3/objects/deals/abc?idProperty=system_a_unique

FAQs

For more information about objects in HubSpot, learn how to manage your CRM database.


Was this article helpful?
This form is used for documentation feedback only. Learn how to get help with HubSpot.