# Zoho Sign — Pipedream Connect

> Sign, Paperless. A complete digital signature app for business signatories.

- API slug: `zoho_sign` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: File Storage
- Website: https://www.zoho.com/sign/
- Managed OAuth scopes: `ZohoSign.documents.READ` · `ZohoSign.documents.UPDATE` · `ZohoSign.documents.DELETE` · `ZohoSign.account.CREATE` · `ZohoSign.account.UPDATE` · `ZohoSign.account.READ` · `ZohoSign.account.DELETE` · `ZohoSign.templates.CREATE` · `ZohoSign.templates.READ` · `ZohoSign.templates.UPDATE`
- This page (HTML): https://pipedream.com/apps/zoho-sign
- Tools: 3 actions · 3 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: zoho_sign`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "zoho_sign",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Get Document Details:
const result = await mcp.callTool({
  name: "zoho_sign-get-document-details",
  arguments: {
    documentId: "Document",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## API proxy

For a Zoho Sign endpoint with no pre-built tool, the proxy forwards your request with the connected user's credentials attached.

```bash
# The path segment is the target URL, URL-safe base64 encoded:
# https://api.example.com/v1/me

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuZXhhbXBsZS5jb20vdjEvbWU?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
  -H "Authorization: Bearer {access_token}" \
  -H "x-pd-environment: production"
```

Docs: [API proxy guide](https://pipedream.com/docs/connect/api-proxy.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "zoho_sign-get-document-details",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    zoho_sign: { authProvisionId: "apn_xxxxxxx" },
    documentId: "Document",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (3)

### `zoho_sign-get-document-details` — Get Document Details (Read-only)

Get the details of a particular document. See the documentation

Full schema: https://pipedream.com/apps/zoho-sign/actions/get-document-details.md

### `zoho_sign-get-document-form-detail` — Get Document Form Detail (Read-only)

Retrieves the filled field data for a particular document. See the documentation

Full schema: https://pipedream.com/apps/zoho-sign/actions/get-document-form-detail.md

### `zoho_sign-send-document` — Send Document (Write)

Sends a document to the designated recipients for their signatures. See the documentation

Full schema: https://pipedream.com/apps/zoho-sign/actions/send-document.md

## Triggers (3)

### `zoho_sign-document-completed` — New Document Completed (Polling)

Emit new event when a document is completed.

Full schema: https://pipedream.com/apps/zoho-sign/triggers/document-completed.md

### `zoho_sign-document-created` — New Document Created (Polling)

Emit new event when a new document is created.

Full schema: https://pipedream.com/apps/zoho-sign/triggers/document-created.md

### `zoho_sign-document-signed` — New Document Signed (Polling)

Emit new event when a document has received a successful signature from all the required parties.

Full schema: https://pipedream.com/apps/zoho-sign/triggers/document-signed.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
