Merge · Schema

AvailableActions

# The AvailableActions Object ### Description The `Activity` object is used to see all available model/operation combinations for an integration. ### Usage Example Fetch all the actions available for the `Zenefits` integration.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
integration object
passthrough_available boolean
available_model_operations array
View JSON Schema on GitHub

JSON Schema

merge-availableactions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AvailableActions",
  "title": "AvailableActions",
  "type": "object",
  "properties": {
    "integration": {
      "$ref": "#/components/schemas/AccountIntegration"
    },
    "passthrough_available": {
      "type": "boolean"
    },
    "available_model_operations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ModelOperation"
      }
    }
  },
  "required": [
    "integration",
    "passthrough_available"
  ],
  "description": "# The AvailableActions Object\n### Description\nThe `Activity` object is used to see all available model/operation combinations for an integration.\n\n### Usage Example\nFetch all the actions available for the `Zenefits` integration."
}