# Veremark — Pipedream Connect

> Global Background Checks & Screening Platform

- API slug: `veremark` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Human Resources
- Website: https://veremark.com
- This page (HTML): https://pipedream.com/apps/veremark
- Tools: 5 actions · 0 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: veremark`

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Background Check Request:
const result = await mcp.callTool({
  name: "veremark-create-request",
  arguments: {
    criteriaGuid: "Criteria GUID",
    candidateFirstName: "Candidate First Name",
  },
})
```

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

## API proxy

For a Veremark 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.veremark.com/external/v1/user/

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkudmVyZW1hcmsuY29tL2V4dGVybmFsL3YxL3VzZXIv?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: "veremark-create-request",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    veremark: { authProvisionId: "apn_xxxxxxx" },
    criteriaGuid: "Criteria GUID",
    candidateFirstName: "Candidate 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)

### `veremark-create-request` — Create Background Check Request (Write)

Initiates a new background check request for a candidate. Veremark sends the candidate an email invitation to complete their part of the screening process. Returns the request GUID — save this to check status later with Get Background Check Request. Use List Criteria first to find the criteria GUID…

Full schema: https://pipedream.com/apps/veremark/actions/create-request.md

### `veremark-download-report` — Download Background Check Report (Read-only)

Downloads the full PDF background check report for a completed request and saves it via File Stash. Only available once the request reaches 'completed' status — use Get Background Check Request to check status first. The request GUID is returned when a request is created with Create Background…

Full schema: https://pipedream.com/apps/veremark/actions/download-report.md

### `veremark-download-document` — Download candidate-uploaded document via File Stash (Read-only)

Downloads a supporting document uploaded by a candidate during the background check process and saves it via File Stash. Document GUIDs are found in the response from Get Background Check Request — look in the checks array for document references. Common document types include resumes, ID scans…

Full schema: https://pipedream.com/apps/veremark/actions/download-document.md

### `veremark-get-request` — Get Background Check Request (Read-only)

Retrieves the status and details of a background check request by its GUID. Returns the overall request status (e.g. requested, in_progress, review, completed) and the status of each individual check within the request. Also returns document GUIDs for any candidate-uploaded files, which can be…

Full schema: https://pipedream.com/apps/veremark/actions/get-request.md

### `veremark-list-criteria` — List Criteria (Read-only)

Returns all background check criteria packages configured for your Veremark account. Each criteria defines a named bundle of checks (e.g. 'Executive' includes reference check, ID check, employment check). Use this tool first to discover available criteria and their GUIDs before calling Create…

Full schema: https://pipedream.com/apps/veremark/actions/list-criteria.md

---

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