Unified.to · Schema

ApiCall

IntegrationsUnified API

Properties

Name Type Description
connection_id string
created_at string
endapi_response_time number
environment string
error string
external_xref string
id string
integration_type string
ip_address string
is_billable boolean
method string
name string
path string
size number
status string
type string
unified_response_time number
user_agent string
webhook_id string
workspace_id string
View JSON Schema on GitHub

JSON Schema

unified-to-apicall-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiCall",
  "title": "ApiCall",
  "properties": {
    "connection_id": {
      "type": "string"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "endapi_response_time": {
      "type": "number"
    },
    "environment": {
      "default": "Production",
      "type": "string"
    },
    "error": {
      "type": "string"
    },
    "external_xref": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "integration_type": {
      "type": "string"
    },
    "ip_address": {
      "type": "string"
    },
    "is_billable": {
      "type": "boolean"
    },
    "method": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "path": {
      "type": "string"
    },
    "size": {
      "type": "number"
    },
    "status": {
      "type": "string"
    },
    "type": {
      "enum": [
        "login",
        "webhook",
        "inbound",
        "mcp"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "unified_response_time": {
      "type": "number"
    },
    "user_agent": {
      "type": "string"
    },
    "webhook_id": {
      "type": "string"
    },
    "workspace_id": {
      "type": "string"
    }
  },
  "required": [
    "integration_type",
    "name",
    "path",
    "status",
    "type",
    "method"
  ],
  "type": "object"
}