Cmdlets for Zendesk

Build 24.0.9175

Update-Zendesk Cmdlet

Parameters   Output Objects  

Updates Zendesk data.

Syntax

Update-Zendesk [parameters]

Remarks

The Update-Zendesk cmdlet allows you to use a syntax similar to SQL UPDATE statements to update Zendesk data.

$conn = Connect-Zendesk -OAuthClientId 'abc123' -OAuthClientSecret 'def456' -CallbackURL 'http://localhost:33333'
Update-Zendesk -Connection $conn -Table "Tickets" -Columns @("Subject") -Values @("Jon Doe") -Id "1"
The Where parameter can also be used to specify the primary key of the table:
Update-Zendesk -Connection $conn -Table "Tickets" -Columns @("Subject") -Values @("Jon Doe") -Where "Id = '1'"
The primary key can also be passed to the cmdlet along the pipeline:
Select-Zendesk -Connection $conn -Table Tickets -Where "Industry = 'Floppy Disks'" | Update-Zendesk -Columns @("Industry") -Values @("Floppy Disks 2")

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 24.0.9175