# Create Job Application — Homerun

> Creates a new job application. See the documentation.

- Key: `homerun-create-job-application`
- Type: Action (Write)
- Version: 0.0.3
- App: Homerun (`homerun`) — https://pipedream.com/apps/homerun.md
- This page (HTML): https://pipedream.com/apps/homerun/actions/create-job-application
- Hints: open-world
- Source: https://github.com/PipedreamHQ/pipedream/blob/master/components/homerun/actions/create-job-application/create-job-application.mjs

## Description

Creates a new job application. [See the documentation](https://developers.homerun.co/#tag/Job-Applications/operation/job-applications.post).

## Props

| Prop | Type | Required | Description |
|---|---|---|---|
| `firstName` | `string` | Yes | The first name of the applicant. Make sure you don't include numbers or special characters. |
| `lastName` | `string` | Yes | The last name of the applicant. Make sure you don't include numbers or special characters. |
| `email` | `string` | Yes | The email of the applicant. |
| `dateOfBirth` | `string` | No | The date of birth of the applicant in the format of YYYY-MM-DD. |
| `vacancyId` | `string` | No | The ID of the vacancy. Options are loaded from the connected account. |
| `phoneNumber` | `string` | No | The phone number of the applicant. |
| `photo` | `string` | No | The URL of the applicant's photo. |
| `experience` | `string` | No | The experience of the applicant. |
| `education` | `string` | No | The education of the applicant. |
| `facebook` | `string` | No | The Facebook URL of the applicant. eg. https://facebook.com/username |
| `twitter` | `string` | No | The X URL of the applicant. eg. https://x.com/username |
| `linkedin` | `string` | No | The LinkedIn URL of the applicant. eg. https://linkedin.com/in/username |
| `github` | `string` | No | The GitHub URL of the applicant. eg. https://github.com/username |
| `website` | `string` | No | The website URL of the applicant. eg. https://username.com |

## Run it

**MCP**

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

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

const { tools } = await mcp.listTools()

// listTools() hands your model this tool's input schema, so it can
// fill the arguments itself:
const result = await mcp.callTool({
  name: "homerun-create-job-application",
  arguments: {
    firstName: "First Name",
    lastName: "Last Name",
  },
})
```

**TypeScript**

```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: "homerun-create-job-application",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    homerun: { authProvisionId: "apn_xxxxxxx" },
    firstName: "First Name",
    lastName: "Last Name",
  },
})

console.log(result)
```

**cURL**

```bash
curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
  -H "Content-Type: application/json" \
  -H "X-PD-Environment: production" \
  -H "Authorization: Bearer {access_token}" \
  -d '{
    "external_user_id": "{external_user_id}",
    "id": "homerun-create-job-application",
    "configured_props": {
      "homerun": { "authProvisionId": "apn_xxxxxxx" },
      "firstName": "First Name",
      "lastName": "Last Name"
    }
  }'
```

---

- App: https://pipedream.com/apps/homerun.md · All apps: https://pipedream.com/apps
