Regenerate authentication keys
Regenerate authentication for a Hybrid Deployment Agent.
Request schema
Path parameters
Hybrid Deployment Agent Id
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Request
PATCH /v1/hybrid-deployment-agents/agentId/re-auth HTTP/1.1
Accept: application/json
Authorization: Basic <Replace with base64-encoded key>
Content-Type: application/json
Host: api.fivetran.com
Content-Length: 25
{
"auth_type": "AUTO"
}
Responses
Successful response schema
Response status code
Response status text
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.
Base64 encoded content of the config.json
Base64 encoded content of the docker-compose.yaml
Base64 encoded content of the auth.json
Base64 encoded content of token
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.
{
"code": "Success",
"message": "Operation performed.",
"data": {
"id": "agent_id",
"version": "version",
"enabled": true,
"online": true,
"files": {
"config_json": "Base64 {... config.json contents ...}",
"docker_compose_yaml": "Base64 {... docker-compose.yaml contents ...}",
"auth_json": "Base64 {... auth.json contents ...}"
},
"token": "token_value",
"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"
}
}