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.
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:
- Contacts: store information about an individual person. View contacts endpoints
- Companies: store information about an individual business or organization. View companies endpoints
- Deals: represent revenue opportunities with a contact or company. They’re tracked through pipeline stages, resulting in the deal being won or lost. View deals endpoints
- Tickets: represent customer requests for help or support. They're tracked through pipeline statuses, resulting in the ticket being closed. View tickets endpoints
- Calls: store information about calls with contacts, but can also be associated with other objects as an engagement. View calls endpoints.
- Quotes: represent pricing information shared with potential buyers. Quotes can be associated with contacts, companies, deals, and line items. View quotes endpoints.
- Custom Objects (Enterprise only): create a custom object to store any type of data in HubSpot—particularly data that doesn't fit the standard objects listed above. View custom object endpoints
The following objects do not have index pages within HubSpot, but can be associated with certain other objects:
- Activities/Engagements (Calls, Emails, Meetings, Notes, Tasks, SMS, LinkedIn, WhatsApp, Postal Mail): represent interactions associated with your records. You can associate activities with contacts, companies, deals, tickets, and custom objects. View engagements endpoints.
- Products: represent goods or services for sale. You can associate products with deals, generate quotes, and report on product performance. View products endpoints
- Line items: represent a subset of products sold in a deal. When a product is associated with a deal, it becomes a line item. You can create line items that are unique to an individual quote, but they will not be added to your product library. View line items endpoints
- Feedback submissions: stores information submitted to a feedback survey. Feedback submissions are associated with contact records. View feedback submission endpoints
- Marketing events: represent events related to your marketing efforts, specifically including events from connected integrations. You can specify whether or not a contact attended, registered for, or cancelled attending a marketing event. View marketing events endpoints
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.
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:
- Contacts:
0-1
- Companies:
0-2
- Deals:
0-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 to2-3453932
. - Calls:
0-48
- Emails:
0-49
- Meetings:
0-47
- Notes:
0-4
- Tasks:
0-27
- Products:
0-7
- Line items:
0-8
- Quotes:
0-14
- 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 forcolumnObjectTypeId
could becontact
or0-1
. - When using the associations API, the
fromObjectType
andtoObjectType
values specify the objects and the direction of the association. To view association types for contacts to companies, yourGET
request URL could becrm/v4/associations/contact/company/labels
orcrm/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 address and a company's domain name.
Creating your own unique identifiers
In many cases, you can use the record ID generated by HubSpot to drive the logic of your integration. However, there are times when that isn't possible or it complicates the integration logic of your app. For example:
- A legacy CRM can't store HubSpot's object ID with the associated record, making it impossible to match corresponding records in the two systems.
- An integration is syncing updates from another app to HubSpot, but not from HubSpot to the other app. Instead of mapping IDs from both systems, the integration simply uses the external app's IDs when creating or updating records.
Learn how to create a custom unique identiier property via the Properties API.
FAQs
For more information about objects in HubSpot, learn how to manage your CRM database.
Thank you for your feedback, it means a lot to us.