List Hybrid Deployment Agents
Returns list of all Hybrid Deployment Agents within your Fivetran account, along with usage. Optionally filtered to a single group.
Request schema
Query parameters
The Fivetran Group Id.
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
GET /v1/hybrid-deployment-agents?groupId=group_id&cursor=SOME_STRING_VALUE&limit=SOME_INTEGER_VALUE HTTP/1.1
Accept: application/json
Authorization: Basic <Replace with base64-encoded key>
Host: api.fivetran.com
Responses
Successful response schema
Response status code
Response status text
The collection of returned items
The unique ID of a Hybrid Deployment Agent.
Version of the Hybrid Deployment Agent
The boolean value specifying whether the Hybrid Deployment Agent is enabled.
The boolean value specifying whether the Hybrid Deployment Agent is online.
The name used both as the connection's name within the Fivetran system and as the source schema's name within your group.
The connector type name within the Fivetran system.
The unique identifier for the connection within the Fivetran
Hybrid Deployment Agent display name.
The unique identifier for the group within your Fivetran account.
Time when this Hybrid Deployment Agent was created.
Environment type.
The actor who created the Hybrid Deployment Agent
The time this Hybrid Deployment Agent was last used.
Time when this Hybrid Deployment Agent was updated.
The value of the cursor parameter for the next page
{
"code": "Success",
"message": "Operation performed.",
"data": {
"items": [
{
"id": "agent_id",
"version": "version",
"enabled": true,
"online": true,
"usage": [
{
"schema": "schema_name",
"service": "service",
"connection_id": "connection_id"
}
],
"display_name": "display_name",
"group_id": "group_id",
"registered_at": "2024-12-01T15:43:29.013729Z",
"deployment_type": "DOCKER",
"created_by": "created_by",
"last_used_at": "2024-12-01T15:43:29.013729Z",
"updated_at": "2024-12-01T15:43:29.013729Z"
}
],
"next_cursor": "cursor_value"
}
}