library
turbot/pipes
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: 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
conn
connection.pipes
YesName of Pipes connection to use. If not provided, the default Pipes connection will be used.connection.pipes.default
org_handle
string
YesSpecify the handle of an organization where the member need to be invited.-
email
string
YesThe email of the user to be invited.-
role
string
YesThe role to be assigned to the member. Supported values are member and owner.-

Outputs

NameDescription
invitationThe details of the invitation.