---
title: "Update expected revenue"
method: PUT
path: "/expected-revenue/{id}"
tags: ["Expected Revenue"]
---

# Update expected revenue

`PUT /expected-revenue/{id}`

Updates an existing expected revenue entry

## Path parameters

- `id` integer, required

## Request body

- object
  - `project_id` integer
  - `amount` number
  - `date` string
  - `month` string — Alias for date; YYYY-MM means the first of that month
  - `note` string
  - `description` string — Alias for note

## Response `200`

Successful response

- ExpectedRevenue — Expected revenue entry
  - `id` integer
  - `team_id` integer
  - `project_id` integer, nullable
  - `client_id` integer, nullable
  - `amount` number
  - `month` string
  - `description` string, nullable
  - `is_committed` boolean
  - `date` string, date
  - `note` string, nullable
  - `project` object, nullable
    - `id` integer
    - `name` string
  - `client` object, nullable
    - `id` integer
    - `name` string
  - `created_at` string, date-time
  - `updated_at` string, date-time

## Other responses

- `401` — Unauthenticated
- `403` — Forbidden
- `404` — Not found
- `422` — Validation error

---

[API](https://skmtc.net/harpoonapp/apis/harpoon-api-documentation.md) · [All operations](https://skmtc.net/harpoonapp/apis/harpoon-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/harpoonapp/harpoon-api-documentation/versions/e8fd192f94c6/schema)
