Regenerate secrets for proxy agent within your Fivetran account.
Regenerate secrets for Proxy Agent
Request schema
Path parameters
agentId
stringrequired
The unique identifier for the proxy agent within the Fivetran system.
example:
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Http + 1.1
POST
https://api.fivetran.com/v1/proxy/agentId/regenerate-secrets
POST /v1/proxy/agentId/regenerate-secrets HTTP/1.1
Accept: application/json
Authorization: Basic <Replace with base64-encoded key>
Host: api.fivetran.com
Responses
200
Successful response
404
Proxy agent not found.
Successful response schema
code
stringrequired
Response status code
example:
message
string
Response status text
example:
data
objectrequired
client_cert
stringrequired
Client certificate.
example:
agent_id
stringrequired
The unique identifier for the proxy agent within the Fivetran system.
example:
auth_token
stringrequired
The auth token.
example:
client_private_key
stringrequired
Client private key.
example:
{
"code": "Created",
"message": "Operation performed.",
"data": {
"client_cert": "client_cert",
"agent_id": "id",
"auth_token": "auth_token",
"client_private_key": "client_private_key"
}
}