Skip to main content

flow remove

Removes the specified Power Automate flow

Usage

m365 flow remove [options]

Options

-n, --name <name>

The name of the Power Automate flow to remove

-e, --environmentName <environmentName>

The name of the environment to which the flow belongs

--asAdmin

Set, to remove the flow as admin

-f, --force

Don't prompt for confirmation

-h, --help [help]

Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are options, examples, remarks, response, full. Default is options.

--query [query]

JMESPath query string. See http://jmespath.org/ for more information and examples.

-o, --output [output]

Output type. json, text, csv, md, none. Default json.

--verbose

Runs command with verbose logging.

--debug

Runs command with debug logging.

Remarks

By default, the command will try to remove a Power Automate flow you own. If you want to remove a Flow owned by another user, use the asAdmin flag.

If the environment with the name you specified doesn't exist, you will get the Access to the environment 'xyz' is denied. error.

If the Power Automate flow with the name you specified doesn't exist, you will get the Error: Resource 'abc' does not exist in environment 'xyz' error.

Examples

Removes the specified Power Automate flow owned by the currently signed-in user

m365 flow remove --environmentName Default-d87a7535-dd31-4437-bfe1-95340acd55c5 --name 3989cb59-ce1a-4a5c-bb78-257c5c39381d

Removes the specified Power Automate flow owned by the currently signed-in user without confirmation

m365 flow remove --environmentName Default-d87a7535-dd31-4437-bfe1-95340acd55c5 --name 3989cb59-ce1a-4a5c-bb78-257c5c39381d --force

Removes the specified Power Automate flow owned by another user

m365 flow remove --environmentName Default-d87a7535-dd31-4437-bfe1-95340acd55c5 --name 3989cb59-ce1a-4a5c-bb78-257c5c39381d --asAdmin

Removes the specified Power Automate flow owned by another user without confirmation

m365 flow remove --environmentName Default-d87a7535-dd31-4437-bfe1-95340acd55c5 --name 3989cb59-ce1a-4a5c-bb78-257c5c39381d --asAdmin --force

Response

The command won't return a response on success.

CTRL + M