library
turbot/pipes
OverviewPipelines
0
Triggers
0
Variables
GitHub

Get Organization Member

Retrieves information of the specified user in organization.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run pipes.pipeline.get_organization_member \
--arg 'user_handle=<string>' \
--arg 'org_handle=<string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = pipes.pipeline.get_organization_member
args = {
user_handle = <string>
org_handle = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
user_handlestringYesSpecify the organization handle where the member is associated.-
org_handlestringYesSpecify the handle of the user whose information you want to retrieve.-

Outputs

NameDescription
memberThe organization user details.