Properties
| Name | Type | Description |
|---|---|---|
| type | object | The type of this object * `run` - Run |
| status | object | |
| results | array | Could be empty, even if the action was successfully run. |
| errors | array | Any errors returned by the partner when running this action. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "_ActionRunResponse",
"description": "_ActionRunResponse schema from Partner API",
"$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api--action-run-response-schema.json",
"type": "object",
"properties": {
"type": {
"allOf": [
{
"$ref": "#/components/schemas/RunTypeEnum"
}
],
"description": "The type of this object\n\n* `run` - Run",
"example": "standard"
},
"status": {
"$ref": "#/components/schemas/_ActionRunResponseStatusEnum"
},
"results": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": {}
},
"description": "Could be empty, even if the action was successfully run.",
"example": [
{}
]
},
"errors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/_ActionRunResponseError"
},
"description": "Any errors returned by the partner when running this action.",
"example": [
{}
]
}
},
"required": [
"errors",
"status",
"type"
]
}