Zapier · JSON Structure

Partner Api Expanded Zap Step Structure

An ordered list of steps that define the logic of the Zap.

Type: object Properties: 4 Required: 4
IntegrationsiPaaS

ExpandedZapStep is a JSON Structure definition published by Zapier, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

action authentication inputs title

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-structure/partner-api-expanded-zap-step-structure.json",
  "name": "ExpandedZapStep",
  "description": "An ordered list of steps that define the logic of the Zap.",
  "type": "object",
  "properties": {
    "action": {
      "description": "Action",
      "oneOf": [
        {
          "$ref": "#/components/schemas/Action"
        },
        {
          "type": "string"
        }
      ],
      "example": "example-value"
    },
    "authentication": {
      "description": "Authentication",
      "oneOf": [
        {
          "$ref": "#/components/schemas/Authentication"
        },
        {
          "type": "string"
        }
      ],
      "example": "example-value"
    },
    "inputs": {
      "readOnly": true,
      "description": "The inputs for this specific Zap's step",
      "example": "example-value"
    },
    "title": {
      "type": "string",
      "readOnly": true,
      "description": "The custom title of a Zap Step. If a step has not been given a custom title by the user, then the value will be null.",
      "example": "Example Name"
    }
  },
  "required": [
    "action",
    "authentication",
    "inputs",
    "title"
  ]
}