Zapier · Schema

ZapRunStep

A single step in a Zap Run.

IntegrationsiPaaS

Properties

Name Type Description
status stringnull Execution status of the step
start_time stringnull Datetime when the step was executed
View JSON Schema on GitHub

JSON Schema

partner-api-zap-run-step-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ZapRunStep",
  "description": "A single step in a Zap Run.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-zap-run-step-schema.json",
  "type": "object",
  "properties": {
    "status": {
      "type": [
        "string",
        "null"
      ],
      "description": "Execution status of the step",
      "example": "active"
    },
    "start_time": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time",
      "description": "Datetime when the step was executed",
      "example": "2026-05-01T12:00:00Z"
    }
  },
  "required": [
    "status"
  ]
}