# eTrusted — Pipedream Connect

> Review platform by Trusted Shops

- API slug: `etrusted` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: CRM
- Website: https://app.etrusted.com/
- This page (HTML): https://pipedream.com/apps/etrusted
- Tools: 10 actions · 1 trigger

## 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: etrusted`

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

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

const { tools } = await mcp.listTools()

// e.g. run Create A Veto For A Review:
const result = await mcp.callTool({
  name: "etrusted-create-veto-for-review",
  arguments: {
    reviewId: "Review ID",
    comment: "Comment",
  },
})
```

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

## API proxy

For a eTrusted 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.etrusted.com/reviews

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuZXRydXN0ZWQuY29tL3Jldmlld3M?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: "etrusted-create-veto-for-review",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    etrusted: { authProvisionId: "apn_xxxxxxx" },
    reviewId: "Review ID",
    comment: "Comment",
  },
})
```

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

## Actions (10)

### `etrusted-create-veto-for-review` — Create A Veto For A Review (Write)

Creates a veto for a specific review. See the documentation

Full schema: https://pipedream.com/apps/etrusted/actions/create-veto-for-review.md

### `etrusted-delete-review-reply` — Delete Review Reply (Write)

Reply to a review. See the documentation

Full schema: https://pipedream.com/apps/etrusted/actions/delete-review-reply.md

### `etrusted-get-review-veto-by-review-id` — Get A Review Veto By Review ID (Read-only)

Retrieves a veto for a specific review. See the documentation

Full schema: https://pipedream.com/apps/etrusted/actions/get-review-veto-by-review-id.md

### `etrusted-get-list-of-reviews` — Get List of Reviews (Read-only)

Get a list of reviews for a specific channel, a set of channels or for your entire account. See the documentation

Full schema: https://pipedream.com/apps/etrusted/actions/get-list-of-reviews.md

### `etrusted-get-list-of-reviews-with-fewer-properties` — Get List of Reviews with Fewer Properties (Read-only)

Retrieves a list of reviews with fewer properties. See the documentation

Full schema: https://pipedream.com/apps/etrusted/actions/get-list-of-reviews-with-fewer-properties.md

### `etrusted-get-review-by-id` — Get Review by ID (Read-only)

Retrieves detailed information about a specific review by its ID. See the documentation

Full schema: https://pipedream.com/apps/etrusted/actions/get-review-by-id.md

### `etrusted-get-service-review-rating` — Get Service Review Rating (Read-only)

Retrieves aggregate ratings for service reviews by channel ID. See the documentation

Full schema: https://pipedream.com/apps/etrusted/actions/get-service-review-rating.md

### `etrusted-get-total-reviews` — Get The Total Number Of Reviews Based On A Filter (Read-only)

Retrieves count of reviews for a specific channel. See the documentation

Full schema: https://pipedream.com/apps/etrusted/actions/get-total-reviews.md

### `etrusted-list-channel-id-options` — List Channel ID Options (Read-only)

Retrieves available options for the Channel ID field.

Full schema: https://pipedream.com/apps/etrusted/actions/list-channel-id-options.md

### `etrusted-save-review-reply` — Save A Review Reply (Write)

Reply to a review. See the documentation

Full schema: https://pipedream.com/apps/etrusted/actions/save-review-reply.md

## Triggers (1)

### `etrusted-new-review` — New Review (Polling)

Emit new event when a new review is submitted on an eTrusted channel. See the documentation

Full schema: https://pipedream.com/apps/etrusted/triggers/new-review.md

---

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