Pipedream · Schema

CreateOAuthTokenResponse

Response object for creating an OAuth token

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
access_token string
token_type string
expires_in integer
View JSON Schema on GitHub

JSON Schema

pipedream-createoauthtokenresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateOAuthTokenResponse",
  "title": "CreateOAuthTokenResponse",
  "type": "object",
  "description": "Response object for creating an OAuth token",
  "required": [
    "access_token",
    "token_type",
    "expires_in"
  ],
  "properties": {
    "access_token": {
      "type": "string"
    },
    "token_type": {
      "type": "string"
    },
    "expires_in": {
      "type": "integer"
    }
  }
}