Properties
| Name | Type | Description |
|---|---|---|
| links | object | The links object returned in paginated response bodies. |
| meta | object | The meta object returned in paginated response bodies. |
| data | array | The returned data after a successful Zap run |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ZapRunsResponse",
"description": "A list of Zap Runs.",
"$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-zap-runs-response-schema.json",
"type": "object",
"properties": {
"links": {
"allOf": [
{
"$ref": "#/components/schemas/Links"
}
],
"description": "The links object returned in paginated response bodies.",
"example": "example-value"
},
"meta": {
"allOf": [
{
"$ref": "#/components/schemas/BaseMeta"
}
],
"description": "The meta object returned in paginated response bodies.",
"example": "example-value"
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ZapRun"
},
"description": "The returned data after a successful Zap run",
"example": [
{}
]
}
},
"required": [
"links",
"meta"
]
}