Get destination approved fingerprints
Returns the list of approved SSH fingerprints for specified destination
Request schema
Path parameters
destinationId
stringrequired
The unique identifier for the destination within the Fivetran system.
example:
Query parameters
cursor
string
Paging cursor, read more about pagination
example:
limit
integer
Number of records to fetch per page. Accepts a number in the range 1..1000; the default value is 100.
format:
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
GET /v1/destinations/destination_id/fingerprints?cursor=fErdGh2de354d&limit=100 HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Host: api.fivetran.com
Responses
200
Successful response
404
Destination not found
Successful response schema
code
stringrequired
Response status code
example:
message
string
Response status text
example:
data
objectrequired
items
arrayrequired
The collection of return items
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:
nextCursor
string
The value of the cursor parameter for the next page
example:
{
"code": "Success",
"message": "Operation performed.",
"data": {
"items": [
{
"hash": "eUtPirI6yy...",
"validated_by": "user_id",
"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key",
"validated_date": "2024-01-01T00:00:00Z"
}
],
"nextCursor": "cursor_value"
}
}