StyloDocs
Workflow blocks

Get Organization

Get organization details for B2B context

View as Markdown

zendesk/get-organization — Get organization details for B2B context.

Where it appears

The Get Organization block lives in the Integrations group of the Workflow Builder. Connect the Zendesk integration before adding it.

Fields

FieldTypeRequiredDefaultDescription
organizationIdtext (supports references)YesNumeric Zendesk organization ID to fetch. Use a literal number or <StepName.field> to reference an ID from a previous step (e.g. a user's organization_id).

Inputs and outputs

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

Outputs

Reference an output downstream with <Get Organization.field>.

NameTypeDescription
successbooleanSuccess status
organizationjsonOrganization object
errorstringError message if failed

Example

A minimal configuration for this block:

{
  "type": "zendesk/get-organization",
  "config": {
    "organizationId": "<PreviousStep.field>"
  }
}

Limits and failure modes

  • Requires a connected Zendesk integration. Calls fail if that integration is disconnected or its authorization has expired.
  • Required field (organizationId) 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