Certification Answers

Integrating With HubSpot I: Foundations Certification Answers 2024

COURSE CURRICULUM

  1. Getting Started With Building HubSpot Integrations
  2. An Overview of the HubSpot CRM
  3. The Fundamentals of Authenticating Integrations
  4. API Usage Guidelines and Rate Limits
  5. Troubleshooting Your Application
  6. Coding Basic Web Apps to Make API Calls

Integrating With HubSpot I: Foundations – FREE Certification Course

HubSpot is a powerful development platform that offers APIs and other tools to help you integrate with and extend HubSpot’s CRM and its different Hubs. Creating quality integrations with HubSpot requires some familiarity with HubSpot’s CRM, its different Hubs, and its API endpoints. In this certification course, we’ll establish a foundation to help you begin integrating with and extending HubSpot.
https://academy.hubspot.com/courses/integrating-with-hubspot-foundations

Certification Questions & Certification Answers

A bike repair shop customer wants to make it easier for their repair technicians to alert customers when a job has been completed. Their repair technicians are busy and don’t have time to send individual messages to their customers. Which of the following is the fastest, easiest potential solution you could offer?

  1. Set up an automated email workflow that triggers when the ticket is completed.
  2. Build a mobile app that sends their customers alert messages when the repair technicians have finished the job.
  3. Use the emails and tickets APIs to build an integration that auto-sends emails upon ticket completion.
  4. Use the Webhooks API to send an alert to their customer on their website.

Correct Answer :

  • Set up an automated email workflow that triggers when the ticket is completed.

A customer has a lot of inbox conversations coming in each day for their service reps. Their reps can sometimes miss questions because of how full it gets. They mainly work in Slack and would prefer if they could answer their customers’ questions without leaving that app. What part of the dev docs could help you create this connection point?

  1. The Webhooks section
  2. The Conversations section
  3. The Automation section
  4. The Marketing section

Correct Answer :

  • The Conversations section

A customer wants a ticket’s data called on a certain web page to also be available in other parts of the integration. What could you do to ensure you’re not making too many of the same calls to the API?

  1. Cache the data on the first call and then grab the data from the cache on subsequent uses.
  2. Use a batch API to call the data multiple times with one endpoint.
  3. Write an automation with a webhook API that’ll call the data on subsequent uses.
  4. Restrict the data to only appear on certain web pages.

Correct Answer :

  • Cache the data on the first call and then grab the data from the cache on subsequent uses.

A customer wants to create an internal integration that’ll assign a contact directly to a chosen workflow. What type of integration would this be and what type of authentication method would you use?

  1. One-to-many, OAuth
  2. One-to-one, OAuth
  3. One-to-many, Private app
  4. One-to-one, Private app

Correct Answer :

  • One-to-one, Private app

A customer wants to help their sales team generate new deals through email, which is their primary form of communication with potential customers. They’re evaluating whether they should build a custom solution. What’s the first question you should answer to help them determine next steps?

  1. What problem is this integration aiming to solve?
  2. What type of integration will you need to build?
  3. What part of the HubSpot platform are you trying to integrate with?
  4. What tier of HubSpot accounts does your user or company currently have?

Correct Answer :

  • What problem is this integration aiming to solve?

A customer wants to update a custom object’s associations to be associated with the company object. How should they go about it doing this from the UI, without making a call to the API?

  1. Build a custom integration that’ll allow them to make the association with a single click.
  2. Add a new association directly on the custom object list view.
  3. Update the associations of the custom object in the Data Management section in Settings.
  4. None of the above. You can only associate custom objects with other object types through an API call.

Correct Answer :

  • Update the associations of the custom object in the Data Management section in Settings.

Fill in the blank: Apps using OAuth are subject to a limit of ____ requests every 10 seconds.

  1. 100
  2. 200
  3. 300
  4. 400

Correct Answer :

  • 100

Fill in the blank: CREATE is to POST as UPDATE is to ____.

  1. UPLOAD
  2. PATCH
  3. REPAIR
  4. CHANGE

Correct Answer :

  • PATCH

Fill in the blank: For an integration, the single required parameter is _____.

  1. a property
  2. authentication
  3. limit
  4. after

Correct Answer :

  • authentication

Fill in the blank: HubSpot API errors are structured to be ______, but it’ll also be helpful for you to recognize some common error response codes when troubleshooting.

  1. succinct
  2. human-readable
  3. foolproof
  4. legible

Correct Answer :

  • human-readable

Fill in the blank: HubSpot API rate limits vary by authentication method and _____.

  1. product tier
  2. user permission type
  3. number of sales employees
  4. public beta status

Correct Answer :

  • product tier

Fill in the blank: There can be many timeline events associated with a contact, but a timeline event cannot be associated with ____ contacts.

  1. the oldest
  2. North American
  3. zero
  4. archived

Correct Answer :

  • zero

Fill in the blank: const headers = { Authorization: `Bearer ${private_app_token} ‘Content-Type: ______ }

  1. application/json
  2. application/xml
  3. multipart/form-data
  4. application/x-www-form-urlencoded

Correct Answer :

  • application/json

How can you find the API version number for the call you’re using?

  1. The version number can be swapped out by using a query parameter
  2. The version number is embedded in the API endpoint URL, such as v1 or v3.
  3. The version number is embedded in the base URL, such as api.v1.hubapi or api.v3.hubapi.
  4. The version number can only be found in the response body of a successful call.

Correct Answer :

  • The version number is embedded in the API endpoint URL, such as v1 or v3.

How can you set up the idProperty to use a unique parameter, such as an email address, other than the contact record’s ID number?

  1. Use “idProperty=email”
  2. Use “[email protected]”
  3. Use “idProperty=firstNameLastName”
  4. Use “idProperty=property”

Correct Answer :

  • Use “idProperty=email”

How does a webhook differ from a traditional API call?

  1. Webhooks have an API limit of four calls per second per authentication method.
  2. Webhooks only complete an action once the stated event occurs.
  3. Webhooks can only be used in a private app.
  4. Webhooks always return 200 successful response codes.

Correct Answer :

  • Webhooks only complete an action once the stated event occurs.

How many company records can an individual engagement object, such as an email, be associated with?

  1. Either zero or one
  2. Always exactly one
  3. Many companies
  4. There can’t be associations between an email and a company record

Correct Answer :

  • Either zero or one

In the HubSpot UI, where can you find the other objects associated to an individual contact record?

  1. In the left-hand corner of an individual contact record
  2. In the contacts list view
  3. In the right-hand column of an individual contact record page
  4. In the center column of an individual contact record

Correct Answer :

  • In the right-hand column of an individual contact record page

Select all that apply. What are some of the query parameters for standard CRM objects.

  1. associations
  2. propertiesWithHistory
  3. events
  4. after

Correct Answer :

  • associations
  • propertiesWithHistory
  • events

Select all that apply. What are the benefits of having an app monitoring tool in your HubSpot account?

  1. You can track how much of your daily usage you’ve used.
  2. You can access the specific response codes you received with each call.
  3. You can expire your access token if you find any suspicious behavior in the call logs.
  4. You can re-try a call that received an error.

Correct Answer :

  • You can track how much of your daily usage you’ve used.
  • You can access the specific response codes you received with each call.
  • You can expire your access token if you find any suspicious behavior in the call logs.

Select all that apply. What are the different HubSpot account types that developers can use?

  1. Test account
  2. Developer sandbox account
  3. CMS sandbox account
  4. Standard sandbox account

Correct Answer :

  • Test account
  • Developer sandbox account
  • CMS sandbox account

Select all that apply. What is the purpose of having a pipeline view for deals and tickets?

  1. To more quickly drag and drop records into a new part of the pipeline.
  2. To visually see the current stage of the pipeline record.
  3. To more quickly update a record’s owner.
  4. To more easily know how many records are in each pipeline.

Correct Answer :

  • To more quickly drag and drop records into a new part of the pipeline.
  • To visually see the current stage of the pipeline record.
  • To more easily know how many records are in each pipeline.

Select all that apply. Which of the following are the different ways you can filter the private app API call logs?

  1. Response code
  2. HTTP method
  3. Date period
  4. CRM object type

Correct Answer :

  • Response code
  • HTTP method
  • Date period

Select all that apply. Which of the following is a benefit of using a promise when working with APIs in a Node App?

  1. Promises allow you to run code asynchronously.
  2. Promises make sure you only render the results once a value is returned.
  3. Promises allow you to pass callbacks into a function.
  4. Promises allow you to chain callbacks together.

Select all that apply. Which of the following is a difference in the way developers and users interact with the CRM?

  1. Developers focus on the object API endpoints, while customers focus on the object records.
  2. Developers use batch calls for large amounts of data, while users use the Import GUI.
  3. Developers can use GraphQL to call CRM data in an email or webpage, while users can use personalization tokens.
  4. Developers can delete CRM content using the HubSpot CLI, while users can delete from the object list view.

Correct Answer :

  • Developers focus on the object API endpoints, while customers focus on the object records.
  • Developers use batch calls for large amounts of data, while users use the Import GUI.
  • Developers can use GraphQL to call CRM data in an email or webpage, while users can use personalization tokens.

Select all that apply. Which of the following topics can be found on the API-side of the dev docs?

  1. CRM
  2. Analytics & Events
  3. Webhooks
  4. Data-Driven Content

Correct Answer :

  • CRM

True or false? A timeline event can be associated with zero contacts.

  1. True
  2. False

Correct Answer :

  • False

True or false? Developers can add associations to custom objects and standard CRM objects.

  1. True
  2. False

Correct Answer :

  • True

True or false? In most situations, you’ll want to create a one-way bridge to dictate the flow of information between your integrations.

  1. True
  2. False

Correct Answer :

  • False

True or false? Most HubSpot API endpoints are public and can be accessed using client-side JavaScript.

  1. True
  2. False

Correct Answer :

  • False

True or false? Most HubSpot APIs require you to use either OAuth or private app for authentication.

  1. True
  2. False

Correct Answer :

  • True

True or false? The OAuth endpoint expects the form/urlencoded format instead of JSON.

  1. True
  2. False

Correct Answer :

  • True

True or false? Using a try/catch is recommended in case the API call fails.

  1. True
  2. False

Correct Answer :

  • True

True or false? You can list an integration that receives error responses 7% of the time.

  1. True
  2. False

Correct Answer :

  • False

True or false? You can use the dev docs to make test calls to the API.

  1. True
  2. False

Correct Answer :

  • True

True or false? You must build a Node app to test API calls.

  1. True
  2. False

Correct Answer :

  • False

True or false? You must have a Professional or higher HubSpot account to purchase the API Add-on.

  1. True
  2. False

Correct Answer :

  • False

True or false? You would have to make another call to the contacts endpoint to get more information on the contacts associated with a company.

  1. True
  2. False

Correct Answer :

  • True

What HTTP method would you use if you wanted to read the tickets data from a HubSpot account?

  1. GATHER method
  2. PULL method
  3. GET method
  4. PATCH method

Correct Answer :

  • GET method

What account permission level is required to create private apps?

  1. Marketing team access
  2. Super admin access
  3. Developer Operations access
  4. Sales team access

Correct Answer :

  • Super admin access

What are the two things you need to pass along to the axios .get method?

  1. The body object and the data format
  2. The API endpoint URL and the body object
  3. The headers object and the data format
  4. The API endpoint URL and the headers object

Correct Answer :

  • The API endpoint URL and the headers object

What does delegated authorization mean?

  1. It delegates the kind of authorization the user can use with the app, giving them the ability to update it as needed.
  2. It creates a three-way bond between a user and two different apps, allowing apps to interact with each other and give the user a seamless experience.
  3. It splits authorization between read and write, so that some users can only read and others can only write.
  4. It creates a one-way bridge between a user and two different apps, so only the user can interact with both, but the two apps can’t interact with each other.

Correct Answer :

  • It creates a three-way bond between a user and two different apps, allowing apps to interact with each other and give the user a seamless experience.

What does the acronym CRUD stand for?

  1. Clean, Reduce, Unload, Defer
  2. Computer, Router, USB, Disk
  3. Create, Read, Update, Delete
  4. Command, Return, U-Key, Delete

Correct Answer :

  • Create, Read, Update, Delete

What is NOT a key benefit of the HubSpot APIs being RESTful APIs?

  1. The HubSpot APIs follow the same set of architectural constraints that other API systems use.
  2. The HubSpot APIs are lightweight, because they rely on the HTTP standard and are platform-agnostic.
  3. The HubSpot APIs connect the server-side to the client-side, so they are never independent of one another.
  4. The HubSpot APIs are easily scalable to add new endpoints and features for developers.

Correct Answer :

  • The HubSpot APIs connect the server-side to the client-side, so they are never independent of one another.

What is NOT one of the benefits of the HubSpot developer community?

  1. You can find other developers with the same issues as you and what resolved it.
  2. You can participate in an Ask Me Anything (AMA) to learn from the community.
  3. You can post your own issues to crowdsource resolutions.
  4. You can get an overview of a specific API.

Correct Answer :

  • You can get an overview of a specific API.

What is a commonality of one-to-one and one-to-many integrations?

  1. One-to-one and one-to-many integrations both need OAuth authorization to work.
  2. One-to-one and one-to-many integrations can both be sold on the HubSpot Marketplace.
  3. One-to-one and one-to-many integrations can both be used on multiple HubSpot accounts.
  4. One-to-one and on

Correct Answer :

  • One-to-one and on

What is the best strategy to avoid receiving 400-level errors?

  1. Routinely clean your account data.
  2. Rotate your access tokens every 60 days.
  3. Ensure your integration has the correct scopes.
  4. Ensure your integration has the correct access token.

Correct Answer :

  • Routinely clean your account data.

What is the difference between a 200 response and a 201 response?

  1. 200 generally applies to POST calls, while 201 generally applies to GET calls.
  2. 200 generally applies to GET calls, while 201 generally applies to POST calls.
  3. 200 generally applies to improperly scoped calls, while 201 generally applies to rejected calls.
  4. 200 generally applies to rejected calls, while 201 generally applies to improperly gated calls.

Correct Answer :

  • 200 generally applies to GET calls, while 201 generally applies to POST calls.

What is the importance of an entity relationship diagram?

  1. It clearly defines the maximum and minimum number of associations between contacts and tickets objects.
  2. It clearly defines the maximum and minimum number of associations between contacts and companies objects.
  3. It clearly defines the maximum and minimum number of associations between contacts and custom objects.
  4. It clearly defines the maximum and minimum number of associations between object types.

Correct Answer :

  • It clearly defines the maximum and minimum number of associations between object types.

What is the importance of an object type’s unique ID?

  1. You need the unique ID to access associated objects.
  2. You need the unique ID to add to your API endpoint.
  3. You need the unique ID to create new records.
  4. You the need unique ID to create new timeline events.

Correct Answer :

  • You need the unique ID to access associated objects.

What is the key benefit of using a webhook call in a workflow?

  1. They’re counted as one request for every three calls.
  2. They’re available to all Marketing Hub product tiers.
  3. They’re faster than traditional API calls.
  4. They don’t count toward the API rate limit.

Correct Answer :

  • They don’t count toward the API rate limit.

What is the key difference between 400- and 500-level errors?

  1. 400-level errors are usually a user error. 500-level errors are usually with the cloud.
  2. 400-level errors are usually with the service you’re calling. 500-level errors are usually with the integration itself.
  3. 400-level errors are usually within the integration itself. 500-level errors are usually with the service you’re calling.
  4. 400-level errors are usually with the cloud. 500-level errors are usually a user error.

Correct Answer :

  • 400-level errors are usually within the integration itself. 500-level errors are usually with the service you’re calling.

What is the key difference between a one-to-one integration and a one-to-many integration?

  1. One-to-many integrations only work in a single account, while one-to-many integrations work in several accounts.
  2. One-to-one integrations only work in a single account, while one-to-many integrations work in several accounts.
  3. One-to-one integrations use OAuth authentication, while one-to-many integrations use private app authentication.
  4. One-to-many integrations don’t require any form of authentication, while one-to-one integrations use private app authentication.

Correct Answer :

  • One-to-one integrations only work in a single account, while one-to-many integrations work in several accounts.

What is the main benefit of the HubSpot developer changelog?

  1. It helps you create new App Marketplace integrations.
  2. It allows you to update your HubSpot account with new features.
  3. It shares updates to the HubSpot product in a single place.
  4. It gives you a consolidated view of your HubSpot developer account.

Correct Answer :

  • It shares updates to the HubSpot product in a single place.

What is the main difference between the dev docs and the knowledge base (KB)?

  1. The dev docs are written with developers in mind, while the KB is written with end-users in mind.
  2. The dev docs are written with end-users in mind, while the KB is written with developers in mind.
  3. The dev docs have no code snippets, while the KB does.
  4. The dev docs have screenshot-based tutorials, while the KB only lists what features are available to you.

Correct Answer :

  • The dev docs are written with developers in mind, while the KB is written with end-users in mind.

What is the main purpose of a developer account?

  1. To create and support CMS Hub-based websites
  2. To manage CRM data and generate leads
  3. To write server-side code and create new databases
  4. To create and manage apps and test accounts

Correct Answer :

  • To create and manage apps and test accounts

What is the main purpose of an API rate limit?

  1. To protect the stability of your personal HubSpot account
  2. To keep bad actors from stealing data
  3. To ensure every user has a quality experience with the system
  4. To help developers build lean code

Correct Answer :

  • To ensure every user has a quality experience with the system

What is the maximum number of private apps you can create in one account?

  1. 5
  2. 10
  3. 15
  4. 20

Correct Answer :

  • 20

What is the most common cause of a 404 error?

  1. The data has been migrated to a new server.
  2. Your access token is outdated.
  3. You have an improperly scoped authentication method.
  4. The data is either deleted or archived.

Correct Answer :

  • The data is either deleted or archived.

What is the purpose of a pug template?

  1. To more easily use CSS in your Node app
  2. To template out HTML code
  3. To more easily create HTML code that uses the data from the server-side
  4. To more easily use JavaScript on the front-end of a Node app

Correct Answer :

  • To more easily create HTML code that uses the data from the server-side

What is the purpose of an .env file?

  1. To keep secret keys outside of source code, which often live in online code repositories
  2. To set how the environment of the integration is structured
  3. To configure automated actions in online code repositories
  4. To host your JSON configurables

Correct Answer :

  • To keep secret keys outside of source code, which often live in online code repositories

What is the purpose of using OAuth in a one-to-many integration?

  1. To allow only a single user to authenticate with the integration.
  2. To allow multiple different users to authenticate with the integration.
  3. To give multiple users access to the integration indefinitely.
  4. To allow only super admins access to the integration.

Correct Answer :

  • To allow multiple different users to authenticate with the integration.

What must the user do to authenticate with OAuth?

  1. Use a refresh token every few hours, so their app re-establishes a connection with their HubSpot account.
  2. Submit a temporary authorization code for the integration to access their HubSpot account.
  3. The user is given an access token they must use whenever they make an API call.
  4. None of the above. The user only has to read the first authorization screen and permit or deny the integration from accessing their HubSpot account. The rest happens in the backend.

Correct Answer :

  • None of the above. The user only has to read the first authorization screen and permit or deny the integration from accessing their HubSpot account. The rest happens in the backend.

What must you first obtain and then add to your OAuth flow (once the authorization expires)?

  1. Access token
  2. Restart token
  3. Refresh token
  4. Return token

Correct Answer :

  • Refresh token

What type of HTTP method is a batch API call?

  1. GET
  2. PATCH
  3. POST
  4. DELETE

Correct Answer :

  • POST

When creating a new object record, how is the new data sent along?

  1. In a headers object
  2. In a body object
  3. In the query parameters
  4. In a pug template

Correct Answer :

  • In a body object

When expiring your private app access tokens, how much of a time buffer can you set before the private app token is rotated?

  1. Three days
  2. Five days
  3. Seven days
  4. Nine days

Correct Answer :

  • Seven days

When making an API call to a standard object, what query parameter must you append to get connected contact records?

  1. ?properties=contacts
  2. ?archived=TRUE
  3. ?associations=contacts
  4. ?after=contacts

Correct Answer :

  • ?associations=contacts

When starting a new development project, what’s the biggest benefit to visiting the HubSpot Marketplace as your first step?

  1. You can find a pre-built integration that meets your customer’s requests instead of having to build one out from scratch, saving time and money.
  2. You can use the App Marketplace to get ideas for what types of integration you should build, sparking an idea for a new integration.
  3. You can download a pre-built integration to your testing environment to understand how it functions, helping you structure your own.
  4. You can use it to research what integrations don’t currently exist, finding a niche in the Marketplace.

Correct Answer :

  • You can find a pre-built integration that meets your customer’s requests instead of having to build one out from scratch, saving time and money.

When working with a private app, you receive the error 403. How would you go about rectifying this error?

  1. Update the scopes in your private app scope settings.
  2. Update the access token in your integration.
  3. Update from using a private app to an OAuth flow.
  4. Create a new private app with different scopes.

Correct Answer :

  • Update the scopes in your private app scope settings.

When would you likely receive a 477 error?

  1. If you had incorrect permissions.
  2. If you were going over your rate limit.
  3. If you were migrating your Hub to an EU hublet.
  4. If you had incorrect scopes.

Correct Answer :

  • If you were migrating your Hub to an EU hublet.

Where can you find pre-built Postman collections to view and test API calls?

  1. The HubSpot developer Slack
  2. Within your HubSpot account
  3. The HubSpot developer community
  4. The HubSpot developer documentation

Correct Answer :

  • The HubSpot developer documentation

Where would you submit a question regarding a JavaScript error you received within the HubSpot developer Slack?

  1. #api
  2. #javascript
  3. #general
  4. #local-development

Correct Answer :

  • #javascript

Which API has a special limit of four requests per second per authentication token?

  1. The Webhook API
  2. The CRM API
  3. The Search API
  4. The Conversations API

Correct Answer :

  • The Search API

Which of the following is NOT a benefit of using OAuth as your authentication flow?

  1. It adds more complexity to the integration’s authentication.
  2. It allows an application to be portable.
  3. It can be created inside of single HubSpot accounts.
  4. It allows you to list your integration on the App Marketplace.

Correct Answer :

  • It can be created inside of single HubSpot accounts.

Which of the following is NOT a benefit of using a Batch API endpoint?

  1. You can consolidate the number of similar calls you make.
  2. You can better work with time-sensitive data so that they’re updated faster.
  3. You can complete multiple tasks in one call, such as updating records.
  4. You can reduce the chances of receiving 429 errors.

Correct Answer :

  • You can better work with time-sensitive data so that they’re updated faster.

Which of the following is NOT a benefit of using the dev docs?

  1. You can copy and paste code snippets.
  2. You can directly submit questions to other developers.
  3. You can make test calls.
  4. You can download Postman collections.

Correct Answer :

  • You can directly submit questions to other developers.

Which of the following is NOT a feature of a test account?

  1. They function just like a regular customer account.
  2. They expire after 60 days and you can’t renew them.
  3. They have Enterprise-level Marketing, Sales, Service, and CMS Hubs with some limitations.
  4. You can add contacts, send emails, and create workflows inside them.

Correct Answer :

  • They expire after 60 days and you can’t renew them.

Which of the following is NOT a way to keep your access token safe?

  1. Rotate your access tokens every six months
  2. Store access tokens in an .env file
  3. Keep your access tokens in a GitHub repository
  4. Routinely check call logs for any suspicious activity

Correct Answer :

  • Keep your access tokens in a GitHub repository

Which of the following is a drawback to how API calls return associated contacts object data?

  1. The call only returns the record ID property of the associated contacts and not any human-readable data.
  2. The call only returns the email property of the associated contacts and not the contact’s business address.
  3. The call only returns the first name of the associated contacts and not the last name.
  4. The call only returns the last name of the associated contacts and not the first name.

Correct Answer :

  • The call only returns the record ID property of the associated contacts and not any human-readable data.

Which of the following is a good use case for using the Webhooks API?

  1. The customer wants to receive a notification every time a deal moves to a new stage in the pipeline.
  2. The customer wants to add a new event to a contact record’s page.
  3. The customer wants to delete duplicate contact records.
  4. The customer wants to track when a website visitor visits a password-protected webpage.

Correct Answer :

  • The customer wants to receive a notification every time a deal moves to a new stage in the pipeline.

Which of the following is a key reason you should use node packages when building a basic Node app?

  1. Node packages allow you to use pre-built code for specific functionalities of your integration.
  2. Node packages allow you to re-write basic JavaScript commands to be more complex.
  3. Node packages allow you to write your code more quickly.
  4. Node packages allow you to package your own code into one index.js file.

Correct Answer :

  • Node packages allow you to use pre-built code for specific functionalities of your integration.

Which of the following is an example of how you interact with OAuth on a daily basis?

  1. You sign into Facebook by tapping a message in your Facebook mobile app.
  2. You sign into a shopping site with your Google login information.
  3. You sign into your email by receiving a 6-digit code through text message.
  4. You scan a QR code from your WhatsApp mobile app to log into WhatsApp on your computer.

Correct Answer :

  • You sign into a shopping site with your Google login information.

Which of the following is needed to call a custom property in your integration?

  1. The custom property’s ID
  2. The custom property’s value
  3. The custom property’s internal name
  4. The custom property’s property type

Correct Answer :

  • The custom property’s internal name

Which of the following is the correct API endpoint for calling the Companies API?

  1. /companies
  2. /crm/v3/objects/companies
  3. /crm/v1/objects/companies
  4. /crm/companies

Correct Answer :

  • /crm/v3/objects/companies

Which of the following resources would be best to use if you wanted to crowdsource a development question you have?

  1. HubSpot developer YouTube channel
  2. HubSpot developer documentation
  3. HubSpot Academy
  4. HubSpot developer community

Correct Answer :

  • HubSpot developer community

Which of the following statements about private apps is NOT true?

  1. Private apps are built inside your HubSpot account.
  2. Private apps are scope-limited, meaning they can only access specific parts of a HubSpot account.
  3. Private apps are a more secure authentication method than API keys.
  4. Private apps can be used in one-to-many integrations.

Correct Answer :

  • Private apps can be used in one-to-many integrations.

Why are the standard CRM objects closely aligned?

  1. Because these objects need one another to make sense, such as having a contact associated with a deal.
  2. Because these objects have very similar properties.
  3. Because these objects can’t function independently of each other.
  4. Because these objects are always created by the same user.

Correct Answer :

  • Because these objects need one another to make sense, such as having a contact associated with a deal.

Why is it best practice to add a delay between automatic, repeated API calls?

  1. It ensures another call won’t happen if the first call isn’t successful.
  2. It lessens the chance you’ll receive 404 errors.
  3. It lessens the chance you’ll receive 5xx temporarily overloaded errors.
  4. It keeps your integration running faster.

Correct Answer :

  • It lessens the chance you’ll receive 5xx temporarily overloaded errors.

Why is it recommended to use Axios when making HTTP requests?

  1. Your HTTP requests fail less often.
  2. Your HTTP requests are made faster.
  3. All developers use it.
  4. The syntax clearly states what types of requests are being made.

Correct Answer :

  • The syntax clearly states what types of requests are being made.

You want to build a private app that can create new custom objects. What scope would you need to give this private app access to?

  1. crm.objects.custom
  2. crm.schema.custom
  3. crm.schema.objects
  4. crm.objects.owners

Correct Answer :

  • crm.schema.custom

This page was last edited on 12th March, 2024 at 8:33 AM (UTC).

I hope this helps! Let me know if you have any other questions.

  • © 2024 Certification Answers - Text is available under the Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0).
    Additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy.