Integrations
Manage brand integrations with third-party systems. Check integration status and configuration.
2 endpoints
Guide
Check and manage third-party integrations configured for a brand. Integrations connect BlueHive to external systems like Enterprise Health for bi-directional data synchronization.
Listing Integrations
Retrieve all integrations for a brand by passing the brand ID in the x-brand-id header. Each integration includes its display name, active status, and configuration.
List brand integrations
Check active integrations for a brand
curl https://api.bluehive.com/v1/integrations \
-H "Authorization: ApiKey YOUR_API_KEY" \
-H "x-brand-id: BRAND123"
# Response:
# {
# "integrations": {
# "enterprise-health": {
# "displayName": "Enterprise Health",
# "active": true,
# "config": { ... }
# }
# }
# }Checking a Specific Integration
Quickly check if a specific integration is active without fetching all integrations.
Check integration status
Is Enterprise Health active for this brand?
curl https://api.bluehive.com/v1/integrations/enterprise-health \
-H "Authorization: ApiKey YOUR_API_KEY" \
-H "x-brand-id: BRAND123"
# Response: { "active": true }