Handling errors
Unless specified otherwise, most HubSpot endpoints will return a 200
OK response upon success. Any endpoints returning a different status code will specify the returned response in its documentation.
In addition, HubSpot has several error responses that are common to multiple APIs:
207 Multi-Status
: returned when there are different statuses (e.g., errors and successes), which occurs when you've enabled multi-status error handling for the object API batch create endpoints.401 Unauthorized
: returned when the authentication provided is invalid. See our Authentication Overview for details on authenticating API requests.403 Forbidden
: returned when the authentication provided does not have the proper permissions to access the specific URL. As an example, an OAuth token that only has content access would get a403
when accessing the Deals API (which requires contacts access). If you've confirmed that your API key or private app has the necessary permissions, please reach out to HubSpot support for assistance.429 Too many requests
: returned when your account or app is over its API rate limits. Find suggestions on working within those limits here.477 Migration in Progress
: returned when a HubSpot account is currently being migrated between data hosting locations. HubSpot will return a Retry-After response header indicating how many seconds to wait before retrying the request (typically up to 24 hours).502/504 timeouts
: returned when HubSpot's processing limits have been met. These limits are in place to prevent a single client from causing degraded performance. These timeout responses occur when making a large number of requests over a sustained period. If you get one of these responses, you should pause your requests for a few seconds, then retry.503 service temporarily unavailable
: returned when HubSpot is temporarily unavailable. If you receive this response, you should pause your requests for a few seconds, then retry.521 web server is down
: returned when HubSpot's server is down, this should be a temporary issue. If you receive this response, you should pause your requests for a few seconds, then retry.522 connnection timed out
: returned when the connection between HubSpot and your application has timed out. If you've received this response, please reach out to HubSpot support for assistance.523 origin is unreachable
: returned when HubSpot is unable to contact your application. If you receive this response, you should pause your requests for a few seconds, then retry.524 timeout
: returned when a response is not received within 100 seconds. This can occur when the HubSpot's server is overloaded, such as with a large data query. If you receive this response, you should pause your requests for a few seconds, then retry.525/526 SSL issues
: returned when the SSL certificate is invalid or the SSL handshake fails. If you've received this response, please reach out to HubSpot support for assistance.
Aside from these general errors, HubSpot error responses are intended to be human-readable. Most endpoints don't return error codes, but return a JSON formatted response with details about the error. More details for endpoint-specific errors can be found on the documentation pages for the endpoint.
Please note: the fields in the example response below should all be treated as optional in any error parsing. The specific fields included can vary between different APIs, so any error parsing should allow for specific fields to be missing from the response.
For the object APIs' batch create endpoints, you can enable multi status responses that include partial failures. This means the response will show which records were created and which were not. To do so, include a unique objectWriteTraceId
value for each input in your request. The objectWriteTraceId
can be any unique string.
For example, a request to create tickets could look like:
In the response, statuses are grouped so you can see which creates were successful and which failed. For the above request, your response would look like:
If your app or integration provides an endpoint that HubSpot will call, such as webhook subscriptions, any errors that your endpoint throws will cause HubSpot to retry the request.
Webhooks
If your service has problems handling notifications at any time, HubSpot will attempt to resend failed notifications up to 10 times.
HubSpot will retry in the following cases:
- Connection failed: HubSpot cannot open an HTTP connection to the provided webhook URL.
- Timeout: Your service takes longer than 5 seconds to send back a response to a batch of notifications
- Error codes: Your service responds with any HTTP status code (
4xx
or5xx
)
Retry-After
header if present. Note that the Retry-After
value is in miliseconds.Notifications will be retried up to 10 times. These retries will be spread out over the next 24 hours, with varying delays between requests. Individual notifications will have some randomization applied, to prevent a large number of concurrent failures from being retried at the exact same time.
If you're creating a custom code action in a workflow, and an API call in your action fails due to a rate limiting error, or a 429
or 5XX
error from axios
or @hubspot/api-client
, HubSpot will reattempt to execute your action for up to three days, starting one minute after failure. Subsequent failures will be retried at increasing intervals, with a maximum gap of eight hours between tries.
Thank you for your feedback, it means a lot to us.