Get Connector Fingerprint Details
NOTE: If you want to get the fingerprint details, do not set
"trust_fingerprints": true
when you create a database connector with our REST API. We can only provide the fingerprint details through the failed SSH Tunnel Connection setup test.
When creating a connector using our REST API, either set
"trust_certficates": false
or omit the field in the Create a Connector endpoint request.The setup test verifying the fingerprint will fail with a message that includes the
hash
andpublic_key
parameters you need:{ "code": "Success", "message": "Connector has been created", "data": { ..., "setup_tests": [ { "title": "SSH Tunnel Connection", "status": "FAILED", "message": "The ssh key might have changed", "details": { "hash": "eUtPirI6yy...", "public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key", "type": "ssh-rsa", "name": "fivetran user key" } } ], ... } }
After you get the failed test message, note the values of
hash
andpublic_key
.Send a POST request to the Approve a Connector Fingerprint endpoint with the
hash
andpublic_key
you just obtained.