Returns all connections attached to the specified proxy agent within your Fivetran account.
Return all connections attached to the proxy agent
Request schema
Path parameters
agentId
stringrequired
The unique identifier for the proxy agent within the Fivetran system.
example:
Query parameters
cursor
string
Paging cursor, read more about pagination
example:
limit
integer
Number of records to fetch per page. Accepts a number in the range 1..1000; the default value is 100.
format:
example:
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Http + 1.1
GET
https://api.fivetran.com/v1/proxy/agent_id/connections
GET /v1/proxy/agent_id/connections?cursor=eyJza2lwIjoyfQ&limit=100 HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Host: api.fivetran.com
Responses
200
Successful response
404
Proxy Agent not found
Successful response schema
code
stringrequired
Response status code
example:
message
string
Response status text
example:
data
objectrequired
items
arrayrequired
The collection of return items
connection_id
string
The unique identifier for the connection within the Fivetran system.
example:
nextCursor
string
The value of the cursor parameter for the next page
example:
{
"code": "Success",
"message": "Operation performed.",
"data": {
"items": [
{
"connection_id": "connection_id"
}
],
"nextCursor": "cursor_value"
}
}