library
turbot/pipes
OverviewPipelines
0
Triggers
0
Variables
GitHub

Invite Organization Member by Email

Invite member to an organization by user email address.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run pipes.pipeline.invite_organization_member_by_email \
--arg 'org_handle=<string>' \
--arg 'email=<string>' \
--arg 'role=<string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = pipes.pipeline.invite_organization_member_by_email
args = {
org_handle = <string>
email = <string>
role = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
org_handlestringYesSpecify the handle of an organization where the member need to be invited.-
emailstringYesThe email of the user to be invited.-
rolestringYesThe role to be assigned to the member. Supported values are member and owner.-

Outputs

NameDescription
invitationThe details of the invitation.