Retrieve group membership
Returns a group membership within a team.
Request schema
Path parameters
teamId
stringrequired
The unique identifier for the team within the account
example:
groupId
stringrequired
The unique identifier for the group within the account
example:
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Http + 1.1
GET
https://api.fivetran.com/v1/teams/team_id/groups/group_id
GET /v1/teams/team_id/groups/group_id HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Host: api.fivetran.com
Responses
200
Successful response
Successful response schema
code
stringrequired
Response status code
example:
message
string
Response status text
example:
data
objectrequired
id
stringrequired
The membership entity unique identifier
example:
role
stringrequired
The role the user has within the entity
example:
created_at
stringrequired
The timestamp that the user created their Fivetran account
format:
example:
{
"code": "Success",
"message": "Operation performed.",
"data": {
"id": "resource_id",
"role": "Role Title",
"created_at": "2024-01-01T00:00:00Z"
}
}