StyloDocs
Workflow blocks

Update Custom Object Record

Update an existing custom object record

View as Markdown

zendesk/update-custom-object-record — Update an existing custom object record.

Where it appears

The Update Custom Object Record block lives in the Integrations group of the Workflow Builder. Connect the Zendesk integration before adding it.

Fields

FieldTypeRequiredDefaultDescription
customObjectKeytext (supports references)YesThe key of the Zendesk custom object type the record belongs to (e.g. home_delivery_order). Accepts literal text or <StepName.field>.
recordIdtext (supports references)YesID of the custom object record to update. Use a literal ID or <StepName.field> from a previous step.
nametext (supports references)NoOptional new display name for the record. Leave blank to keep the current name. Accepts literal text or <StepName.field>.
externalIdtext (supports references)NoOptional new external identifier for the record. Accepts literal text or <StepName.field>.
customFieldscodeNoJSON object of custom object field keys to new values. Only the keys you include are updated.

Inputs and outputs

Inputs are the configurable fields above. The block produces these outputs:

Outputs

Reference an output downstream with <Update Custom Object Record.field>.

NameTypeDescription
successbooleanSuccess status
recordjsonUpdated custom object record (object — fields: id, name, external_id, custom_object_key, custom_object_fields, created_at, updated_at)
errorstringError message if failed

Example

A minimal configuration for this block:

{
  "type": "zendesk/update-custom-object-record",
  "config": {
    "customObjectKey": "<PreviousStep.field>",
    "recordId": "<PreviousStep.field>"
  }
}

Limits and failure modes

  • Requires a connected Zendesk integration. Calls fail if that integration is disconnected or its authorization has expired.
  • Required fields (customObjectKey, recordId) must be set, or the block fails validation before it runs.
  • On failure the error output is populated; downstream blocks that reference other outputs may not receive values.

On this page