Retrieve Connection Certificate Details
Returns details of the certificate approved for the specified connection with specified certificate hash.
Request schema
Path parameters
connectionId
stringrequired
The unique identifier for the connection within the Fivetran system.
example:
connectionId
hash
stringrequired
The unique identifier of the certificate (Base64URL encoded hash of the certificate).
example:
Y29ubmVjdG9yIGNlcnRpZmljYXRlIGhhc2g
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/connections/connectionId/certificates/Y29ubmVjdG9yIGNlcnRpZmljYXRlIGhhc2g
GET /v1/connections/connectionId/certificates/Y29ubmVjdG9yIGNlcnRpZmljYXRlIGhhc2g HTTP/1.1 Accept: application/json Authorization: BasicHost: api.fivetran.com
Responses
200
Successful response
404
Certificate with specified hash not found
200
code
stringrequired
Response status code
example:
Success
message
string
Response status text
example:
Connection certificate details retrieved successfully
data
objectrequired
id
stringrequired
The unique identifier of the certificate (Base64URL encoded hash of the certificate).
example:
Y29ubmVjdG9yIGNlcnRpZmljYXRlIGhhc2g
name
stringrequired
The certificate name.
example:
Certificate Name
hash
stringrequired
Hash of the certificate.
example:
jhg5UI7fgrI6yy...
type
stringrequired
Type of the certificate.
example:
TLS
sha1
stringrequired
SHA1 of certificate.
example:
c8de1d13vtu435ilj435lj345796d8jh7hk8hgk
sha256
stringrequired
SHA256 of certificate.
example:
5vt6rt6jtr654eef94ec3f91122a623b389f4d331ff330026e43af21013vb45f
public_key
stringrequired
The certificate decoded public key.
example:
Sun RSA public key, 2048 bits params: null modulus: 7685655455... public exponent: 65537
validated_date
stringrequired
Date when certificate has been validated and approved.
format:
date-time
example:
2023-08-20T10:15:20.677566Z
validated_by
stringrequired
The unique identified for the user who has approved the certificate.
example:
user_id
{ "code": "Success", "message": "Connection certificate details retrieved successfully", "data": { "id": "Y29ubmVjdG9yIGNlcnRpZmljYXRlIGhhc2g", "name": "Certificate Name", "hash": "jhg5UI7fgrI6yy...", "type": "TLS", "sha1": "c8de1d13vtu435ilj435lj345796d8jh7hk8hgk", "sha256": "5vt6rt6jtr654eef94ec3f91122a623b389f4d331ff330026e43af21013vb45f", "public_key": "Sun RSA public key, 2048 bits params: null modulus: 7685655455... public exponent: 65537", "validated_date": "2023-08-20T10:15:20.677566Z", "validated_by": "user_id" } }