Pipedream · Schema

CreateTokenResponse

Response received after creating a connect token

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
connect_link_url string The Connect Link URL
expires_at string The expiration time of the token in ISO 8601 format
token object
View JSON Schema on GitHub

JSON Schema

pipedream-createtokenresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateTokenResponse",
  "title": "CreateTokenResponse",
  "type": "object",
  "description": "Response received after creating a connect token",
  "required": [
    "connect_link_url",
    "expires_at",
    "token"
  ],
  "properties": {
    "connect_link_url": {
      "type": "string",
      "description": "The Connect Link URL"
    },
    "expires_at": {
      "type": "string",
      "format": "date-time",
      "description": "The expiration time of the token in ISO 8601 format"
    },
    "token": {
      "$ref": "#/components/schemas/ConnectToken"
    }
  }
}