> ## Documentation Index
> Fetch the complete documentation index at: https://docs.slog.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Milestones

# Milestones

Milestones represent time-boxed goals that tasks and projects can be associated with.

## Status values

`PLANNING` · `ACTIVE` · `COMPLETED` · `CANCELLED`

***

## List milestones

```http theme={null}
GET /milestone
Authorization: Bearer <token>
```

***

## Get milestone

```http theme={null}
GET /milestone/:id
Authorization: Bearer <token>
```

***

## Create milestone

```http theme={null}
POST /milestone
Authorization: Bearer <token>
Content-Type: application/json
```

```json theme={null}
{
  "name": "v1.0 Launch",
  "projectId": "project_01jq...",
  "dueDate": "2026-06-30",
  "status": "PLANNING"
}
```

Required: `name`.

***

## Update milestone

```http theme={null}
PATCH /milestone/:id
Authorization: Bearer <token>
Content-Type: application/json
```

```json theme={null}
{ "status": "ACTIVE", "dueDate": "2026-07-15" }
```

***

## Delete milestone

```http theme={null}
DELETE /milestone/:id
Authorization: Bearer <token>
```
