(Deprecated) Approve a fingerprint
Approves a fingerprint, so Fivetran trusts this fingerprint for a source/destination database, and connectors can connect to the source/destination through an SSH tunnel
Request schema
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Request
hash
stringrequired
Hash of the fingerprint.
example:
public_key
stringrequired
The SSH public key.
example:
destination_id
string
The unique identifier for the destination within the Fivetran system.
example:
connector_id
string
The unique identifier for the connector within the Fivetran system.
example:
Http + 1.1
POST
https://api.fivetran.com/v1/fingerprints
POST /v1/fingerprints HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Content-Type: application/json
Host: api.fivetran.com
Content-Length: 183
{
"hash": "eUtPirI6yy...",
"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key",
"destination_id": "destination_id",
"connector_id": "connector_id"
}
Responses
200
Successful response
Successful response schema
code
stringrequired
Response status code
example:
message
stringrequired
Response status text
example:
{
"code": "Success",
"message": "Operation performed."
}