---
title: "Update a work experience"
method: PUT
path: "/members/{memberId}/work-experiences/{workExperienceId}"
tags: ["Work Experiences"]
---

# Update a work experience

`PUT /members/{memberId}/work-experiences/{workExperienceId}`

Replace all fields of an existing work experience.

## Path parameters

- `memberId` string, uuid, required
- `workExperienceId` string, uuid, required

## Request body

- WorkExperienceInput
  - `organizationId` string, uuid, required
  - `jobTitle` string, required — Job title at the organization.
  - `verified` boolean, required
  - `verifiedBy` string, required — Identifier of who verified this work experience.
  - `source` string, required — Source system (e.g. lfxOne).
  - `startDate` string, date-time, required — Start date of the work experience.
  - `endDate` string, date-time, nullable — End date, or null if currently active.

## Response `200`

Work experience updated.

- WorkExperience
  - `id` string, uuid, required
  - `organizationId` string, uuid, required
  - `organizationName` string, nullable, required — Display name of the organization.
  - `organizationLogo` string, nullable — URL of the organization logo.
  - `organizationDomains` string[], required — Verified primary domains for the organization, in alphabetical order.
  - `jobTitle` string, nullable, required
  - `verified` boolean, required
  - `verifiedBy` string, nullable, required
  - `source` string, nullable, required — Source system that created this work experience.
  - `startDate` string, date-time, nullable, required
  - `endDate` string, date-time, nullable, required — End date, or null if currently active.
  - `createdAt` string, date-time, nullable, required
  - `updatedAt` string, date-time, nullable, required

## Other responses

- `400` — Invalid request body or query parameters.
- `401` — Missing or invalid authentication credentials.
- `403` — Authentication valid but insufficient scopes.
- `404` — Member or work experience not found.

## Changes

- **2026-08-18** `08aceca4f417` — 1 breaking
  - the `verifiedBy` request property's minLength was increased from `0` to `1`
- **2026-07-08** `bca76fd64a6f` — 1 info
  - added the required property `organizationDomains` to the response with the `200` status
- **2026-04-08** `4bd1bf1b8718` — 1 breaking
  - removed the required property `organizationDomains` from the response with the `200` status

[Change history](https://skmtc.dev/linuxfoundation/apis/cdp-public-api/changes/members/:memberId/work-experiences/:workExperienceId/put.md)

---

[API](https://skmtc.dev/linuxfoundation/apis/cdp-public-api.md) · [All operations](https://skmtc.dev/linuxfoundation/apis/cdp-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/linuxfoundation/cdp-public-api/revisions/08aceca4f417/schema)
