Skip to main content

Organization Config Workflow Tasks

Organization Config tasks update per-organization configuration records from workflows. They are useful for automation that maintains tenant-level settings without calling GraphQL directly.

Update Organization Config

task: "OrganizationConfig/Update@1"
name: updateOrganizationConfig
inputs:
organizationId: "{{ int inputs.organizationId }}"
organizationConfigId: "{{ int inputs.organizationConfigId }}"
organizationConfig:
configName: "tms.trackingEvents"
values:
enabled: true
outputs:
- name: result
mapping: "result"

Inputs

  • organizationId (int, required): The organization that owns the configuration record.
  • organizationConfigId (int, required): The configuration record to update.
  • organizationConfig (object, required): Dynamic values passed to UpdateOrganizationConfigDynamicCommand. Include only fields that should be updated.

Outputs

  • result: Empty object on successful update.
tip

Use this task when the workflow already knows the organizationConfigId. If the workflow only knows a config name, query the config first and pass the returned ID into this task.