Returns all integrations

GET/unified/integration

Parameters

limitnumber
offsetnumber
updated_gtestring
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
categoriesstring array
Filter the results on these categories
summaryboolean
activeboolean
Filter the results for only the workspace's active integrations
envstring default=Production
typestring
Filter the results for only this integration type

Returns

Informational object for supported integrations.

typestring required
Identifier for this integration
created_atstring
Date that this integration was supported (YYYY-MM-DD) (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atstring
YYYY-MM-DD (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
namestring required
The integration's name
is_activeboolean
Is this integration active in this workspace
categories enum array required
Valid values:
"passthrough"
"hris"
"ats"
"auth"
"crm"
The categories of support solutions that this integration has
api_docs_urlstring
The URL of the integration's API documentation
logo_urlstring
The URL of the integration's logo
in_progressboolean
If this integration is not yet available as it is currently being built by unified.to
is_hiddenboolean
colorstring
button background color for AUTH
text_colorstring
text color for AUTH
fa_iconstring
font-awesome icon
token_namesstring array
if auth_types = 'token'
token_instructionsstring array
instructions for the user on how to find the token/key
web_urlstring
URL for the software vendor
rate_limit_descriptionstring
betaboolean
This integration is new and is still considered "beta"
supportstring dictionary
tested_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sandboxany
partnershipany
samlany
descriptionstring
apiany
featuredboolean
popularitynumber
active_healthy_connectionsnumber
const options = {
  method: 'GET',
  url: 'https://api.unified.to/unified/integration',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-05-22T23:26:07.717Z',
    categories: ['crm'],
    summary: false,
    active: false,
    env: 'Production',
    type: '',
  }
};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?