Add a User to a Group
Adds an existing user to a group in your Fivetran account.
Request schema
Path parameters
groupId
stringrequired
The unique identifier for the group within the Fivetran system.
example:
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Request
email
string
The email address that the user has associated with their user profile.
example:
role
string
The group role that you would like to assign this new user to. Supported group roles: ‘Destination Administrator‘, ‘Destination Reviewer‘, ‘Destination Analyst‘, ‘Connector Creator‘, or a custom destination role
example:
Http + 1.1
POST
https://api.fivetran.com/v1/groups/group_id/users
POST /v1/groups/group_id/users HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Content-Type: application/json
Host: api.fivetran.com
Content-Length: 52
{
"email": "user@email.value",
"role": "Owner"
}
Responses
200
Successful response
Successful response schema
code
stringrequired
Response status code
example:
message
stringrequired
Response status text
example:
{
"code": "Success",
"message": "Operation performed."
}