Cmdlets for Kintone

Build 23.0.8839

Remove-Kintone Cmdlet

Parameters   Output Objects  

Deletes Kintone data.

Syntax

Remove-Kintone [parameters]

Remarks

The Remove-Kintone cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Kintone data.

$conn = Connect-Kintone -User 'myuseraccount' -Password 'mypassword' -URL 'http://subdomain.domain.com' -GuestSpaceId 'myspaceid'
Remove-Kintone -Connection $conn -Table "Comments" -Id "123456"
The Where parameter can also be used to specify the primary key:
Remove-Kintone -Connection $conn -Table "exTablePowershell;" -Where "Id = 123456"
The primary key can also be passed to the cmdlet along the pipeline:
Select-Kintone -Connection $conn -Table Comments -Where "AppId = '1354841'" | Remove-Kintone

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839