Zapier · Schema

WhitelabelAppLinks

WhitelabelAppLinks schema from Partner API

IntegrationsiPaaS

Properties

Name Type Description
mcp_authorize_url string URL to authorize the user for MCP. Requires a session token to be set in the query parameters. Returns an OAuth exchange code.
mcp_server_url string URL of the MCP server for this app. Requires an access token bound to a connection.
View JSON Schema on GitHub

JSON Schema

partner-api-whitelabel-app-links-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "WhitelabelAppLinks",
  "description": "WhitelabelAppLinks schema from Partner API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-whitelabel-app-links-schema.json",
  "type": "object",
  "properties": {
    "mcp_authorize_url": {
      "type": "string",
      "format": "uri",
      "description": "URL to authorize the user for MCP. Requires a session token to be set in the query parameters. Returns an OAuth exchange code.",
      "example": "https://example.com/path/abc123"
    },
    "mcp_server_url": {
      "type": "string",
      "format": "uri",
      "description": "URL of the MCP server for this app. Requires an access token bound to a connection.",
      "example": "https://example.com/path/abc123"
    }
  },
  "required": [
    "mcp_authorize_url",
    "mcp_server_url"
  ]
}