# Edusign — Pipedream Connect

> Automate and digitise your management of document signatures, attendance records and much more, like over 1,500 training organisations that use Edusign.

- API slug: `edusign` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Learning & Education
- Website: https://edusign.com/
- This page (HTML): https://pipedream.com/apps/edusign
- Tools: 9 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: edusign`

```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": "edusign",
      },
    },
  },
)

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

const { tools } = await mcp.listTools()

// e.g. run Add Student to Course:
const result = await mcp.callTool({
  name: "edusign-add-student-to-course",
  arguments: {
    courseId: "Course ID",
    studentId: "Student ID",
  },
})
```

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

## API proxy

For a Edusign 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://ext.edusign.fr/v1/users

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9leHQuZWR1c2lnbi5mci92MS91c2Vycw?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: "edusign-add-student-to-course",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    edusign: { authProvisionId: "apn_xxxxxxx" },
    courseId: "Course ID",
    studentId: "Student ID",
  },
})
```

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

## Actions (9)

### `edusign-add-student-to-course` — Add Student to Course (Write)

Add a student to a course. See the documentation

Full schema: https://pipedream.com/apps/edusign/actions/add-student-to-course.md

### `edusign-create-course` — Create Course (Write)

Create a new course. See the documentation

Full schema: https://pipedream.com/apps/edusign/actions/create-course.md

### `edusign-create-group` — Create Group (Write)

Create a new group. See the documentation

Full schema: https://pipedream.com/apps/edusign/actions/create-group.md

### `edusign-create-student` — Create Student (Write)

Create a new student. See the documentation

Full schema: https://pipedream.com/apps/edusign/actions/create-student.md

### `edusign-list-classroom-id-options` — List Classroom ID Options (Read-only)

Retrieves available options for the Classroom ID field.

Full schema: https://pipedream.com/apps/edusign/actions/list-classroom-id-options.md

### `edusign-list-course-id-options` — List Course ID Options (Read-only)

Retrieves available options for the Course ID field.

Full schema: https://pipedream.com/apps/edusign/actions/list-course-id-options.md

### `edusign-list-group-id-options` — List Group ID Options (Read-only)

Retrieves available options for the Group ID field.

Full schema: https://pipedream.com/apps/edusign/actions/list-group-id-options.md

### `edusign-list-professor-id-options` — List Professor ID Options (Read-only)

Retrieves available options for the Professor ID field.

Full schema: https://pipedream.com/apps/edusign/actions/list-professor-id-options.md

### `edusign-list-student-id-options` — List Student ID Options (Read-only)

Retrieves available options for the Student ID field.

Full schema: https://pipedream.com/apps/edusign/actions/list-student-id-options.md

## Triggers (3)

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

Emit new event when a new document is created. See the documentation

Full schema: https://pipedream.com/apps/edusign/triggers/new-document-created.md

### `edusign-new-group-created` — New Group Created (Polling)

Emit new event when a new group is created. See the documentation

Full schema: https://pipedream.com/apps/edusign/triggers/new-group-created.md

### `edusign-new-student-created` — New Student Created (Polling)

Emit new event when a new student is created. See the documentation

Full schema: https://pipedream.com/apps/edusign/triggers/new-student-created.md

---

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