Get connection approved certificates.
Returns the list of approved certificates for specified connection.
Request schema
Path parameters
The unique identifier for the connection within the Fivetran system.
Query parameters
Paging cursor, read more about pagination
Number of records to fetch per page. Accepts a number in the range 1..1000; the default value is 100.
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
GET /v1/connections/connectionId/certificates?cursor=r8ae7gf9a7fgaf&limit=100 HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Host: api.fivetran.com
Responses
Successful response schema
Response status code
Response status text
The collection of returned items
The unique identifier of the certificate (Base64URL encoded hash of the certificate).
The certificate name.
Hash of the certificate.
Type of the certificate.
SHA1 of certificate.
SHA256 of certificate.
Date when certificate has been validated and approved.
The unique identified for the user who has approved the certificate.
The certificate decoded public key.
The value of the cursor parameter for the next page
{
"code": "Success",
"message": "Operation performed.",
"data": {
"items": [
{
"id": "Y29ubmVjdG9yIGNlcnRpZmljYXRlIGhhc2g",
"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"
}
],
"next_cursor": "cursor_value"
}
}