Zapier · JSON Structure

Partner Api Expanded Zaps Response Structure

A page of returned Zaps.

Type: object Properties: 3 Required: 3
IntegrationsiPaaS

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

Properties

links meta data

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-zaps-response-structure.json",
  "name": "ExpandedZapsResponse",
  "description": "A page of returned Zaps.",
  "type": "object",
  "properties": {
    "links": {
      "type": "object",
      "additionalProperties": {
        "type": "string",
        "nullable": true
      },
      "readOnly": true,
      "description": "Links related to the response data",
      "example": {}
    },
    "meta": {
      "type": "object",
      "additionalProperties": {},
      "readOnly": true,
      "description": "Metadata about the response",
      "example": {}
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ExpandedZap"
      },
      "description": "The (potentially) expanded data for Zaps that matched the request",
      "example": [
        {}
      ]
    }
  },
  "required": [
    "data",
    "links",
    "meta"
  ]
}