How to troubleshoot unhealthy connections
September 25, 2024
Connections allow your application to securely access and interact with data from various third-party API providers. They serve as links between your Unified.to workspace, your customers' data, and your app. When something goes wrong, we will mark those connections as unhealthy. This guide will walk you through how to understand, identify, and resolve issues with unhealthy connections.
Before you begin
This guide assumes you have a basic understanding of:
Understanding connection health
Connections in Unified.to have different health statuses based on their recent activity:
- Healthy: The connection is working as expected.
- Unhealthy: The connection has failed and hasn't had a successful call since.
- Unhealthy now: The connection has had a recent failure after previous successes.
- New: The connection has been created but hasn't been used yet.
These statuses are determined by two key fields:
last_healthy_at
: Timestamp of the last successful API calllast_unhealthy_at
: Timestamp of the last failed API call
It's important to note that a connection can represent multiple objects and endpoints, each with its own potential for errors. Not all errors are terminal or indicative of a broken connection.
Connection lifecycle
Understanding the connection lifecycle can help in troubleshooting:
- Your customer selects an integration from your app to authorize.
- Your customer is directed to the authorization page for that integration.
- Unified.to determines what to display on the page (e.g. OAuth vs API token)
- Your customer grants access to their account.
- Unified.to's server creates a connection in memory and attempts to test it immediately.
- If tests pass, the connection is created in our database and your customer is redirected to the success page.
- If tests fail, the customer is redirected to the failure page with error details in the URL query.
- Note: Errors at this stage are currently not logged in the API call logs.
Diagnose the connection
The first place to look for debugging information is in the API call logs.
1. Check the connection status
- Log in to your Unified.to account.
- Navigate to Integrations > Connections.
- Look for connections marked as Unhealthy or Unhealthy now.
2. Review API call logs
- Go to API Call Logs.
- Filter the logs by the connection ID of the unhealthy connection (note: we only store logs from the past 60 days).
- Look for recent error logs (status codes 400 and above).
- Click on an error log to view details about the failed API call.
You can also use the Unified API to retrieve a list of your connections and API call logs. Pass the connection_id
to the API calls endpoint to filter by that connection.
API reference: List all connections, List all API calls
Troubleshooting connection error codes
Authentication (401)
A 401 error is likely indicative that the connection is broken and requires recreation.
Possible causes:
- Your app's access to the provider has been revoked.
- In non-OAuth flows that ask your customers to input an API key or other information, they may have input the wrong values.
Solutions:
- Double check that your app still has access to the API provider.
- Ensure that your customers are entering the correctly values during the authorization flow.
- After doing the above, recreate the connection to refresh the authentication
- If the issue persists for specific endpoints, contact Unified.to support for assistance.
Permissions (403)
A 403 error is likely indicative that one or more data objects is not working as expected, usually due to misconfigured scopes.
Possible causes:
- Mismatch between the scopes that the provider expects and what Unified.to is requesting. This can happen when:
- Scopes have been changed or disabled on the provider's end i.e. in your developer account, or
- The proper scopes are not being requested when setting up the Authorization embedded component or when generating an authorization URL.
Solutions:
- Double check your scope settings in your developer account
- Log into your developer account for the API you're trying to access.
- Navigate to the settings page where your app's authorization options are found.
- Ensure that all necessary scopes are enabled (see note below on different integrations and how they handle scopes)
- Make a note of the scopes that are enabled.
- Double check your scope settings on Unified.to
If you are using our embedded components to create connections, you'll need to ensure that the scopes on Unified.to match the ones you enabled in the API provider.
1. Navigate to **Settings >** [**Embedded Authorization**](https://app.unified.to/settings/embed?tab=Authorization).
2. Click **Options**.
3. Select the permission scopes that match the scopes you enabled in the developer account (see note below on mappings).
4. Select the **webhook** scope.
- If the issue still persists, contact Unified.to support for assistance.
If you are generating an auth URL to redirect your customers to our auth flow, include scopes
as a query parameter and list all the Unified scopes you need. Behind the scenes, Unified.to will map the Unified scopes you pass to the scopes on the API provider's end (see note below on mappings).
For example:
https://api.unified.to/unified/integration/auth/
{WORKSPACE_ID}/{INTEGRATION e.g. hubspot}?redirect=true
&scopes=webhook,{YOUR_SCOPES e.g. crm_deal_read, crm_event_read}
API reference: Create an authorization URL
After addressing these issues, re-create the connection and/or webhook and then try again.
A note on mappings:
A mapping of the Unified scopes to the API provider (i.e. integration's) scopes can be found on the integration details page under the OAuth 2 Credentials tab e.g. here are the mappings for HubSpot scopes.
A note on integration-specific scopes:
Different integrations may handle scopes in different ways - sometimes you can request a subset of the scopes enabled in the developer account, other times you must request all the scopes that have been enabled, and in the case of Hubspot, scopes are divided into Required and Optional scopes. For these cases, we have written how-to guides on generating OAuth credentials and configuring scopes. Please consult the Unified.to docs for more information about these integrations.
Not found (404)
Note: For Enrichment category integrations, 404 errors are treated as successful responses. They indicate that no data was found for the provided input, not that the connection is broken.
Solution:
- Verify that the input data (e.g., email, company name) is correct.
Rate limiting (429)
429 errors are treated as successful responses by Unified.to as they indicate the connection is active but temporarily limited.
Possible cause:
- Exceeding the API rate limits of the third-party service
Solutions:
- (Recommended) Use webhooks to read data and Unified.to will take care of rate limiting for you.
- Implement request throttling in your application.
- Contact the third-party service to request increased rate limits.
Server errors (500 series e.g. 502, 503, etc)
500 series errors are often treated as successful responses by Unified.to as they usually indicate temporary issues with the third-party service. In cases where the issue is on our end, however, we will attempt to make that clear in the error message.
Possible causes:
- Temporary issues with the third-party service
- Bugs
Solutions:
- Check the status page of the third-party service for any ongoing issues.
- Retry the request after a short delay.
- If the issue still persists or if you've discovered a bug, contact Unified.to support for assistance. Thank you!
Not implemented (501)
501 errors are treated as successful responses by Unified.to. They indicate that a specific functionality is not implemented for the integration, not that the connection is broken.
Suggestion actions:
- Check the Unified.to documentation for the specific integration to understand its supported features.
- If you believe the functionality should be supported, contact Unified.to support and we'd be happy to look into it.
Monitor and receive updates about your connections
To stay informed about changes to your connections:
- Navigate to Settings > Workspace.
- Under Notifications webhook URL, enter the URL where you want to receive notifications (this should be an endpoint on your server that can receive POST requests).
- Under Notifications webhook events, select events related to connections:
CONNECTION_HEALTHY
CONNECTION_UNHEALTHY
CONNECTION_CREATED
CONNECTION_UPDATED
CONNECTION_DELETED
- Implement a handler for these events in your app to monitor connection health proactively.
Next steps
- Join our Discord community for support and updates.
- If issues persist, contact our support team for further assistance.
Remember, connection health is dynamic and can change with each API call. Not all errors indicate a broken connection, and some error types are treated as successful responses in certain contexts.