curl 'https://api.hydradb.com/connectors/providers' \
-H "Authorization: Bearer $HYDRA_DB_API_KEY" \
-H "API-Version: 2"
{
"providers": [
{
"provider": "slack",
"category": "Communication",
"supported": true,
"moveit_support": false,
"is_alpha": false,
"is_beta": false,
"rank": 1
}
]
}
Connectors
List Connector Providers
List every connector provider available to the authenticated organization.
GET
/
connectors
/
providers
curl 'https://api.hydradb.com/connectors/providers' \
-H "Authorization: Bearer $HYDRA_DB_API_KEY" \
-H "API-Version: 2"
{
"providers": [
{
"provider": "slack",
"category": "Communication",
"supported": true,
"moveit_support": false,
"is_alpha": false,
"is_beta": false,
"rank": 1
}
]
}
Call
GET /connectors/providers without an id query parameter to retrieve the catalog of connectable providers.
curl 'https://api.hydradb.com/connectors/providers' \
-H "Authorization: Bearer $HYDRA_DB_API_KEY" \
-H "API-Version: 2"
{
"providers": [
{
"provider": "slack",
"category": "Communication",
"supported": true,
"moveit_support": false,
"is_alpha": false,
"is_beta": false,
"rank": 1
}
]
}
| Property | Meaning |
|---|---|
provider | Provider identifier. Use this value as id to get provider details and as provider when creating a connector. |
category | Display grouping for the provider. |
supported | Whether the provider can be connected today. |
moveit_support | Whether the provider syncs through the MOVEIT pipeline. |
is_alpha / is_beta | Connector maturity flags. |
rank | Catalog display order; lower ranks appear first. |
Related Resources
- Get Connector Provider - retrieve fields and credentials for one provider
- Create Connector
Query Parameters
Provider name (e.g. slack, gmail). Omit to list all.
Example:
"HydraDoc1234"
Response
OK
Show child attributes
Show child attributes
Example:
[
{
"is_alpha": true,
"is_beta": true,
"moveit_support": true,
"provider": "slack",
"rank": 1,
"rbac_support": true,
"supported": true,
"webhook_support": true
}
]
Was this page helpful?
