Get destination approved certificate details.
Returns details of the certificate 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 certificate.
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/certificates/jhg5UI7fgrI6yy...
GET /v1/destinations/destination_id/certificates/jhg5UI7fgrI6yy... HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Host: api.fivetran.com
Responses
200
Successful response
404
Certificate with specified hash not found
Successful response schema
code
stringrequired
Response status code
example:
message
string
Response status text
example:
data
objectrequired
name
stringrequired
The certificate name.
example:
hash
stringrequired
Hash of the certificate.
example:
type
stringrequired
Type of the certificate.
example:
sha1
stringrequired
SHA1 of certificate.
example:
sha256
stringrequired
SHA256 of certificate.
example:
validated_date
stringrequired
Date when certificate has been validated and approved.
format:
example:
validated_by
stringrequired
The unique identified for the user who has approved the certificate.
example:
public_key
stringrequired
The certificate decoded public key.
example:
{
"code": "Success",
"message": "Operation performed.",
"data": {
"name": "Certificate Name",
"hash": "jhg5UI7fgrI6yy...",
"type": "TLS",
"sha1": "c8de1d13vtu435ilj435lj345796d8jh7hk8hgk",
"sha256": "5vt6rt6jtr654eef94ec3f91122a623b389f4d331ff330026e43af21013vb45f",
"validated_date": "2023-08-20T10:15:20.677566Z",
"validated_by": "user_id",
"public_key": "Sun RSA public key, 2048 bits params: null modulus: 7685655455... public exponent: 65537"
}
}