List All Connection Memberships
Returns all connections a team has membership in.
Request schema
Path parameters
teamId
stringrequired
The unique identifier for the team within the account.
example:
teamId
Query parameters
cursor
string
Paging cursor, read more about pagination
example:
cursor_value
limit
integer
Number of records to fetch per page. Accepts a number in the range 1..1000; the default value is 100.
format:
int32
example:
100
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/teams/teamId/connections
GET /v1/teams/teamId/connections?cursor=cursor_value&limit=100 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:
Team connection memberships retrieved successfully
data
undefinedrequired
items
arrayrequired
The collection of returned items
id
stringrequired
The membership entity unique identifier
example:
resource_id
role
stringrequired
The role the user has within the entity
example:
Role Title
created_at
stringrequired
The timestamp that the user created their Fivetran account
format:
date-time
example:
2024-01-01T00:00:00Z
next_cursor
string
The value of the cursor parameter for the next page
example:
cursor_value
{ "code": "Success", "message": "Team connection memberships retrieved successfully", "data": { "items": [ { "id": "resource_id", "role": "Role Title", "created_at": "2024-01-01T00:00:00Z" } ], "next_cursor": "cursor_value" } }