Zapier · Schema

ZapStep

One step in a Zap

IntegrationsiPaaS

Properties

Name Type Description
type_of object The type of this Step * `read` - read * `write` - write * `filter` - filter * `search` - search * `search_or_write` - search_or_write
app object The App used in this Step
params objectnull The parameters used by this Step
View JSON Schema on GitHub

JSON Schema

partner-api-zap-step-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ZapStep",
  "description": "One step in a Zap",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-zap-step-schema.json",
  "type": "object",
  "properties": {
    "type_of": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TypeOfEnum"
        }
      ],
      "description": "The type of this Step\n\n* `read` - read\n* `write` - write\n* `filter` - filter\n* `search` - search\n* `search_or_write` - search_or_write",
      "example": "standard"
    },
    "app": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ZapStepApp"
        }
      ],
      "description": "The App used in this Step",
      "example": "example-value"
    },
    "params": {
      "type": [
        "object",
        "null"
      ],
      "additionalProperties": {},
      "readOnly": true,
      "description": "The parameters used by this Step",
      "example": {}
    }
  },
  "required": [
    "app",
    "params",
    "type_of"
  ]
}