# Altoviz — Pipedream Connect

> Online management software for entrepreneurs, small businesses, and self-employed individuals. Quotes, invoicing, payments, treasury, accounting, and much more.

- API slug: `altoviz` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Business Management
- Website: https://altoviz.com/fr
- This page (HTML): https://pipedream.com/apps/altoviz
- Tools: 5 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: altoviz`

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Customer:
const result = await mcp.callTool({
  name: "altoviz-create-customer",
  arguments: {
    email: "Email",
    firstName: "First Name",
  },
})
```

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

## API proxy

For a Altoviz 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.altoviz.com/v1/Users/me

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuYWx0b3Zpei5jb20vdjEvVXNlcnMvbWU?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: "altoviz-create-customer",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    altoviz: { authProvisionId: "apn_xxxxxxx" },
    email: "Email",
    firstName: "First Name",
  },
})
```

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

## Actions (5)

### `altoviz-create-customer` — Create Customer (Write)

Creates a new customer in Altoviz. See the documentation

Full schema: https://pipedream.com/apps/altoviz/actions/create-customer.md

### `altoviz-create-product` — Create Product (Write)

Creates a new product in Altoviz. See the documentation

Full schema: https://pipedream.com/apps/altoviz/actions/create-product.md

### `altoviz-find-product` — Find Product (Read-only)

Finds products in Altoviz using the 'productnumber' prop. See the documentation

Full schema: https://pipedream.com/apps/altoviz/actions/find-product.md

### `altoviz-list-invoice-id-options` — List Invoice ID Options (Read-only)

Retrieves available options for the Invoice ID field.

Full schema: https://pipedream.com/apps/altoviz/actions/list-invoice-id-options.md

### `altoviz-send-sales-invoice` — Send Sales Invoice (Write)

Sends a sales invoice via email. See the documentation

Full schema: https://pipedream.com/apps/altoviz/actions/send-sales-invoice.md

## Triggers (3)

### `altoviz-new-contact-instant` — New Contact (Instant) (Instant)

Emit new event each time a contact is created, updated or deleted in Altoviz.

Full schema: https://pipedream.com/apps/altoviz/triggers/new-contact-instant.md

### `altoviz-new-product-instant` — New Product (Instant) (Instant)

Emit new event when a product is created, updated or deleted in Altoviz.

Full schema: https://pipedream.com/apps/altoviz/triggers/new-product-instant.md

### `altoviz-new-sales-invoice-instant` — New Sales Invoice (Instant) (Instant)

Emit new event each time a sales invoice is created, updated, or deleted in Altoviz

Full schema: https://pipedream.com/apps/altoviz/triggers/new-sales-invoice-instant.md

---

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