# Update Employee — Axonaut

> Updates a employee. See documentation (Go to POST /api/v2/employees)

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

## Description

Updates a employee. [See documentation (Go to `POST /api/v2/employees`)](https://axonaut.com/api/v2/doc)

## Props

| Prop | Type | Required | Description |
|---|---|---|---|
| `employeeId` | `string` | Yes | The employee ID 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 |
| `email` | `string` | No | The email of the employee |
| `phoneNumber` | `string` | No | The phone number of the employee |
| `customFields` | `string` | No | The custom fields of the employee. E.g { "myCustomField": "myCustomValue" } |

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

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

---

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