Retrieve Group Public SSH Key
Returns public key from SSH key pair associated with the group.
Request schema
Path parameters
groupId
stringrequired
The unique identifier for the group within the Fivetran system.
example:
groupId
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/groups/groupId/public-key
GET /v1/groups/groupId/public-key HTTP/1.1 Accept: application/json Authorization: BasicHost: api.fivetran.com
Responses
200
Successful response
200
code
stringrequired
Response status code
example:
Success
message
string
Response status text
example:
Group SSH public key retrieved successfully
data
objectrequired
public_key
stringrequired
example:
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key
{ "code": "Success", "message": "Group SSH public key retrieved successfully", "data": { "public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key" } }