pp dataverse table row remove
Removes a row from a dataverse table in a given environment.
Usage
m365 pp dataverse table row remove [options]
Options
-e, --environmentName <environmentName>
The name of the environment to remove a row from a table from.
-i, --id <id>
The id of the row to remove.
--entitySetName [entitySetName]
The entity set name of the table. Specify either
entitySetName
ortableName
but not both--tableName [tableName]
The name of the table. Specify either
entitySetName
ortableName
but not both-f, --force
Don't prompt for confirmation
--asAdmin
Set, to remove the row from the dataverse table as admin for environments you are not a member of.
-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 isoptions
.--query [query]
JMESPath query string. See http://jmespath.org/ for more information and examples.
-o, --output [output]
Output type.
json
,text
,csv
,md
,none
. Defaultjson
.--verbose
Runs command with verbose logging.
--debug
Runs command with debug logging.
Examples
Removes a row from a dataverse table in a given environment
m365 pp dataverse table row remove --environmentName "Default-2ca3eaa5-140f-4175-8261-3272edf9f339" --tableName "aadusers" --id "21d01cf4-356c-ed11-9561-000d3a4bbea4"
Removes a row from a dataverse table in a given environment as Admin
m365 pp dataverse table row remove --environmentName "Default-2ca3eaa5-140f-4175-8261-3272edf9f339" --tableName "aadusers" --id "21d01cf4-356c-ed11-9561-000d3a4bbea4" --asAdmin
Removes a row from a dataverse table in a given environment without prompting for confirmation
m365 pp dataverse table row remove --environmentName "Default-2ca3eaa5-140f-4175-8261-3272edf9f339" --tableName "aadusers" --id "21d01cf4-356c-ed11-9561-000d3a4bbea4" --force
Removes a row from a dataverse table in a given environment based on the entity set name without prompting for confirmation
m365 pp dataverse table row remove --environmentName "Default-2ca3eaa5-140f-4175-8261-3272edf9f339" --entitySetName "cr6c3_accounts" --id "21d01cf4-356c-ed11-9561-000d3a4bbea4" --force
Response
The command won't return a response on success.