Retrieve Destination Fingerprint Details
Returns SSH fingerprint details approved for specified destination with specified hash
Request schema
Path parameters
destinationId
stringrequired
The unique identifier for the destination within the Fivetran system.
example:
destinationId
hash
stringrequired
The unique identifier of the fingerprint (Base64URL encoded hash of the fingerprint).
example:
Y29ubmVjdG9yIGZpbmdlcnByaW50IGhhc2g
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
application/json
example:
application/json
Http + 1.1
GET
https://api.fivetran.com/v1/destinations/destinationId/fingerprints/Y29ubmVjdG9yIGZpbmdlcnByaW50IGhhc2g
GET /v1/destinations/destinationId/fingerprints/Y29ubmVjdG9yIGZpbmdlcnByaW50IGhhc2g HTTP/1.1 Accept: application/json Authorization: BasicHost: api.fivetran.com
Responses
200
Successful response
404
Fingerprint with specified hash not found
200
code
stringrequired
Response status code
example:
Success
message
string
Response status text
example:
Destination fingerprint details retrieved successfully
data
objectrequired
id
stringrequired
The unique identifier of the fingerprint (Base64URL encoded hash of the fingerprint).
example:
Y29ubmVjdG9yIGZpbmdlcnByaW50IGhhc2g
hash
stringrequired
Hash of the fingerprint.
example:
eUtPirI6yy...
public_key
stringrequired
The SSH public key.
example:
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key
validated_date
stringrequired
Date when fingerprint has been validated and approved.
format:
date-time
example:
2024-01-01T00:00:00Z
validated_by
stringrequired
The unique identified for the user who has approved the fingerprint.
example:
user_id
{ "code": "Success", "message": "Destination fingerprint details retrieved successfully", "data": { "id": "Y29ubmVjdG9yIGZpbmdlcnByaW50IGhhc2g", "hash": "eUtPirI6yy...", "public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key", "validated_date": "2024-01-01T00:00:00Z", "validated_by": "user_id" } }