Skip to main content
PATCH
/
project-revenue-recognition-entries
/
{id}
Update a project revenue recognition entry
curl --request PATCH \
  --url https://www.ruddr.io/api/workspace/project-revenue-recognition-entries/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "date": "2023-12-25",
  "amount": 123,
  "notes": "<string>"
}
'
{
  "id": "d7e29b14-3c08-4f5a-a1e6-b9c0f2d83a71",
  "date": "2026-03-01",
  "amount": 18750.5,
  "notes": "March revenue adjustment",
  "createdAt": "2026-01-20T16:08:44.561Z",
  "project": {
    "id": "71e4b903-2c68-4f1a-a5d9-b0f37e8c2d16",
    "name": "Data Analytics Platform",
    "client": {
      "id": "7f2a8c91-e304-4b5d-a6e1-d9c0f3b72e48",
      "name": "Globex Industries"
    }
  }
}
Scheduled recognition of payments for fixed-fee projects. This is only available for projects that have a billing type of “fixed” or “fixed_recurring” and where the revenue recognition mode is set to “manual”.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The project revenue recognition entry uuid.

Body

application/json
date
string<date>

The date (YYYY-MM-DD) of the entry.

amount
number

The total amount of the entry.

notes
string | null

Any notes about the entry (max 255 chars).

Response

200

id
string

The unique identifier for the object.

date
string<date>

The date of the entry. Will be in the form YYYY-MM-DD.

amount
number

The total amount of the entry.

notes
string | null

Any notes about the entry.

createdAt
string<date-time>

The timestamp when the object was created.

project
object

The project this entry belongs to.