List All Private Links
Returns a list of all private links.
Request schema
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/private-links?cursor=lhg1345hk8vh&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 return items
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 timestamp of the time the private link was created in your account
The actor who created the private link
Private link cloud provider
Private link state summary
Databricks for AWS
The name of your connection service.
The value of the cursor parameter for the next page
{
"code": "Success",
"message": "Operation performed.",
"data": {
"items": [
{
"id": "private_link_id",
"name": "PrivateLinkName",
"region": "AWS_US_EAST_1",
"service": "DATABRICKS_AWS",
"state": "OK",
"account_id": "string",
"created_at": "2023-12-01T15:43:29.013729Z",
"created_by": "user_id",
"cloud_provider": "AWS",
"state_summary": "...",
"config": {
"connection_service_name": "connection_service_name"
}
}
],
"nextCursor": "cursor_value"
}
}