---
title: "Create expected revenue"
method: POST
path: "/expected-revenue"
tags: ["Expected Revenue"]
---

# Create expected revenue

`POST /expected-revenue`

Creates a new expected revenue entry

## Request body

- object
  - `project_id` integer
  - `amount` number, required
  - `date` string, required
  - `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
- `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/revisions/e8fd192f94c6/schema)
