# Update Employee Record — Tellent HR

> Update an existing employee's record in kiwiHR. See the documentation

- Key: `kiwihr-update-employee-record`
- Type: Action (Write)
- Version: 1.0.0
- App: Tellent HR (`kiwihr`) — https://pipedream.com/apps/kiwihr.md
- This page (HTML): https://pipedream.com/apps/kiwihr/actions/update-employee-record
- Hints: destructive · open-world
- Source: https://github.com/PipedreamHQ/pipedream/blob/master/components/kiwihr/actions/update-employee-record/update-employee-record.mjs

## Description

Update an existing employee's record in kiwiHR. [See the documentation](https://api.kiwihr.it/api/docs/mutation.doc.html)

## Props

| Prop | Type | Required | Description |
|---|---|---|---|
| `employeeId` | `string` | Yes | ID of the employee you want to update Options are loaded from the connected account. |
| `firstName` | `string` | No | The first name of the employee |
| `lastName` | `string` | No | The last name of the employee |
| `workPhones` | `string[]` | No | A list of employee's work phone numbers |
| `employmentStartDate` | `string` | No | User's work started date. Format YYYY-MM-DD |
| `aboutMe` | `string` | No | Short info about the user |
| `gender` | `string` | No | The gender of the employee |
| `managerId` | `string` | No | ID of the user's manager Options are loaded from the connected account. |
| `nationality` | `string` | No | 2-digit Employee's nationality in ISO 3166-1 |
| `teamIds` | `string[]` | No | List of IDs of teams user belongs to Options are loaded from the connected account. |
| `positionId` | `string` | No | Employee's position ID Options are loaded from the connected account. |
| `locationId` | `string` | No | Employee's location ID Options are loaded from the connected account. |
| `birthDate` | `string` | No | Employee's date of birth |
| `personalPhone` | `string` | No | Employee's personal phone number |
| `personalEmail` | `string` | No | Employee's personal email address |
| `addressStreet` | `string` | No | The employee's street address |
| `addressCity` | `string` | No | The employee's city address |
| `addressState` | `string` | No | The employee's state address |
| `addressPostalCode` | `string` | No | The employee's postal code address |
| `addressCountry` | `string` | No | The employee's country address |
| `pronouns` | `string` | No | The employee's pronouns |

## 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": "kiwihr",
      },
    },
  },
)

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: "kiwihr-update-employee-record",
  arguments: {
    employeeId: "Employee ID",
    firstName: "First 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: "kiwihr-update-employee-record",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    kiwihr: { authProvisionId: "apn_xxxxxxx" },
    employeeId: "Employee ID",
    firstName: "First 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": "kiwihr-update-employee-record",
    "configured_props": {
      "kiwihr": { "authProvisionId": "apn_xxxxxxx" },
      "employeeId": "Employee ID",
      "firstName": "First Name"
    }
  }'
```

---

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