Pipedream · Schema

HttpRequestAuth

Authentication configuration for HTTP request

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
type string The authentication type
username string
password string
token string
View JSON Schema on GitHub

JSON Schema

pipedream-httprequestauth-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HttpRequestAuth",
  "title": "HttpRequestAuth",
  "type": "object",
  "description": "Authentication configuration for HTTP request",
  "nullable": true,
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "basic",
        "bearer",
        "none"
      ],
      "description": "The authentication type"
    },
    "username": {
      "type": "string",
      "nullable": true
    },
    "password": {
      "type": "string",
      "nullable": true
    },
    "token": {
      "type": "string",
      "nullable": true
    }
  }
}