---
title: "Complete an offboarding checklist item"
method: POST
path: "/v1/offboarding-checklist/member/{memberId}/item/{templateItemId}/complete"
tags: ["Offboarding Checklist"]
---

# Complete an offboarding checklist item

`POST /v1/offboarding-checklist/member/{memberId}/item/{templateItemId}/complete`

Marks a specific offboarding checklist item complete for a member, recording who completed it and when, as part of finishing that member's offboarding.

## Path parameters

- `memberId` string, required
- `templateItemId` string, required

## Request body

- CompleteChecklistItemDto
  - `notes` string — Optional notes
  - `fileName` string — Evidence file name
  - `fileType` string — Evidence file MIME type
  - `fileData` string — Base64-encoded evidence file. For the web UI / direct callers. AI/MCP clients should instead upload via /v1/uploads/presign (purpose=evidence) and pass `s3Key` — base64 through an LLM is impractically slow and times out. Provide fileData or s3Key (not both).
  - `s3Key` string — Key of an evidence file already uploaded via /v1/uploads/presign (purpose=evidence). The server fetches the bytes from storage — no base64 needed. Provide fileData or s3Key (not both).

## Response `201`

---

[API](https://skmtc.net/trycompai/apis/comp-ai-api.md) · [All operations](https://skmtc.net/trycompai/apis/comp-ai-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/trycompai/comp-ai-api/versions/726b9523fb22/schema)
