Skip to main content
GET
/
project-revenue-recognition-entries
/
{id}
Get a project revenue recognition entry
curl --request GET \
  --url https://www.ruddr.io/api/workspace/project-revenue-recognition-entries/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "a1d83f29-7c04-4b6e-95e2-f8b0c3d17a54",
  "date": "2026-02-10",
  "amount": 12500,
  "notes": "Q1 milestone recognition",
  "createdAt": "2026-02-10T08:15:42.731Z",
  "project": {
    "id": "e7b21c84-3f09-4a6d-815e-d9c4f0a72b53",
    "name": "Platform Migration",
    "client": {
      "id": "91c4e2b7-3f08-4d5a-a6e1-b8d0f7c23e59",
      "name": "Initech"
    }
  }
}
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.

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.