Pipedream · Schema

HttpInterface

An HTTP interface instance

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
id string The unique ID of the HTTP interface
key string
endpoint_url string
custom_response boolean
created_at integer The timestamp when the HTTP interface was created (epoch milliseconds)
updated_at integer The timestamp when the HTTP interface was last updated (epoch milliseconds)
type string The discriminator field
View JSON Schema on GitHub

JSON Schema

pipedream-httpinterface-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HttpInterface",
  "title": "HttpInterface",
  "type": "object",
  "description": "An HTTP interface instance",
  "required": [
    "id",
    "created_at",
    "updated_at",
    "custom_response",
    "endpoint_url",
    "key",
    "type"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique ID of the HTTP interface",
      "pattern": "^hi_[a-zA-Z0-9]+$"
    },
    "key": {
      "type": "string"
    },
    "endpoint_url": {
      "type": "string"
    },
    "custom_response": {
      "type": "boolean"
    },
    "created_at": {
      "type": "integer",
      "description": "The timestamp when the HTTP interface was created (epoch milliseconds)"
    },
    "updated_at": {
      "type": "integer",
      "description": "The timestamp when the HTTP interface was last updated (epoch milliseconds)"
    },
    "type": {
      "type": "string",
      "description": "The discriminator field",
      "enum": [
        "HttpInterface"
      ]
    }
  }
}