Get destination approved 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:
hash
stringrequired
Hash of the fingerprint.
example:
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Http + 1.1
GET
https://api.fivetran.com/v1/destinations/destination_id/fingerprints/jhg5UI7fgrI6yy
GET /v1/destinations/destination_id/fingerprints/jhg5UI7fgrI6yy HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Host: api.fivetran.com
Responses
200
Successful response
404
Fingerprint with specified hash not found
Successful response schema
code
stringrequired
Response status code
example:
message
string
Response status text
example:
data
objectrequired
hash
stringrequired
Hash of the fingerprint.
example:
validated_by
stringrequired
The unique identified for the user who has approved the fingerprint.
example:
public_key
stringrequired
The SSH public key.
example:
validated_date
stringrequired
Date when fingerprint has been validated and approved.
format:
example:
{
"code": "Success",
"message": "Operation performed.",
"data": {
"hash": "eUtPirI6yy...",
"validated_by": "user_id",
"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key",
"validated_date": "2024-01-01T00:00:00Z"
}
}