Retrieve Private Link Details
Returns a private link object if a valid identifier was provided.
Request schema
Path parameters
The unique identifier for the private link within the Fivetran system
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
GET /v1/private-links/privateLinkId HTTP/1.1
Accept: application/json
Authorization: Basic <Replace with base64-encoded key>
Host: api.fivetran.com
Responses
Successful response schema
Response status code
Response status text
The unique identifier for the private link within the Fivetran system.
Private link name
Data processing location. This is where Fivetran will operate and run computation on data.
The name for the service type within the Fivetran system.
Private link state
The DNS name of the PrivateLink endpoint service.
Private link state summary
The timestamp of the time the private link was created in your account
The upstream status of the PrivateLink resource as reported by the cloud provider.
The actor who created the private link
Private link cloud provider
Databricks for AWS
The name of your connection service.
{
"code": "Success",
"message": "Operation performed.",
"data": {
"id": "private_link_id",
"name": "PrivateLinkName",
"region": "AWS_US_EAST_1",
"service": "DATABRICKS_AWS",
"state": "OK",
"host": "example.host.com",
"state_summary": "...",
"account_id": "string",
"created_at": "2023-12-01T15:43:29.013729Z",
"resource_upstream_status": "IDLE",
"created_by": "user_id",
"cloud_provider": "AWS",
"config": {
"connection_service_name": "connection_service_name"
}
}
}