Zapier · Schema
_ActionRunResponseError
The error information returned from a third party when running an action.
IntegrationsiPaaS
Properties
| Name | Type | Description |
|---|---|---|
| code | object | Error type of the result object. * `user` - user * `authentication` - authentication * `partner` - partner * `system` - system * `throttled` - throttled * `system_throttled` - system_throttled * `hydr |
| title | string | A short summary of the problem. |
| detail | string | A human-readable explanation specific to this occurrence of the problem. |
| delay | integer | When a partner throttled the execution call (error_type = throttled), this value will hold the number of seconds to wait before retrying. |
| meta | objectnull | Any additional error information returned from the partner. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/_ActionRunResponseError",
"title": "_ActionRunResponseError",
"type": "object",
"description": "The error information returned from a third party when running an action.",
"properties": {
"code": {
"allOf": [
{
"$ref": "#/components/schemas/CodeEnum"
}
],
"description": "Error type of the result object.\n\n* `user` - user\n* `authentication` - authentication\n* `partner` - partner\n* `system` - system\n* `throttled` - throttled\n* `system_throttled` - system_throttled\n* `hydration` - hydration",
"example": "example-value"
},
"title": {
"type": "string",
"description": "A short summary of the problem.",
"example": "Example Name"
},
"detail": {
"type": "string",
"description": "A human-readable explanation specific to this occurrence of the problem.",
"example": "example-value"
},
"delay": {
"type": "integer",
"description": "When a partner throttled the execution call (error_type = throttled), this value will hold the number of seconds to wait before retrying.",
"example": 100
},
"meta": {
"type": [
"object",
"null"
],
"additionalProperties": {},
"description": "Any additional error information returned from the partner.",
"example": {}
}
}
}